Excel 2019 Power Programming with VBA
eBook - ePub

Excel 2019 Power Programming with VBA

Michael Alexander, Dick Kusleika

Buch teilen
  1. English
  2. ePUB (handyfreundlich)
  3. Über iOS und Android verfügbar
eBook - ePub

Excel 2019 Power Programming with VBA

Michael Alexander, Dick Kusleika

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

Maximize your Excel experience with VBA

Excel 2019 Power Programming with VBA is fully updated to cover all the latest tools and tricks of Excel 2019. Encompassing an analysis of Excel application development and a complete introduction to Visual Basic for Applications (VBA), this comprehensive book presents all of the techniques you need to develop both large and small Excel applications. Over 800 pages of tips, tricks, and best practices shed light on key topics, such as the Excel interface, file formats, enhanced interactivity with other Office applications, and improved collaboration features.

Understanding how to leverage VBA to improve your Excel programming skills can enhance the quality of deliverables that you produce—and can help you take your career to the next level.

  • Explore fully updated content that offers comprehensive coverage through over 900 pages of tips, tricks, and techniques
  • Leverage templates and worksheets that put your new knowledge in action, and reinforce the skills introduced in the text
  • Improve your capabilities regarding Excel programming with VBA, unlocking more of your potential in the office

Excel 2019 Power Programming with VBA is a fundamental resource for intermediate to advanced users who want to polish their skills regarding spreadsheet applications using VBA.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Excel 2019 Power Programming with VBA als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Excel 2019 Power Programming with VBA von Michael Alexander, Dick Kusleika im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Informatica & Applicazioni desktop. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Verlag
Wiley
Jahr
2019
ISBN
9781119514916

Part I
Introduction to Excel VBA

IN THIS PART

  • Chapter 1 Essentials of Spreadsheet Application Development
  • Chapter 2 Introducing Visual Basic for Applications
  • Chapter 3 VBA Programming Fundamentals
  • Chapter 4 Working with VBA Sub Procedures
  • Chapter 5 Creating Function Procedures
  • Chapter 6 Understanding Excel's Events
  • Chapter 7 VBA Programming Examples and Techniques

CHAPTER 1
Essentials of Spreadsheet Application Development

IN THIS CHAPTER

  • Discovering the basic steps involved in spreadsheet application development
  • Determining end users' needs
  • Planning applications to meet users' needs
  • Developing and testing your applications
  • Documenting your development efforts and writing user documentation

What Is a Spreadsheet Application?

For the purposes of this book, a spreadsheet application is a spreadsheet file (or group of related files) that is designed so that someone other than the developer can perform specific tasks without extensive training. According to this definition, most of the spreadsheet files that you've developed probably don't qualify as spreadsheet applications. You may have dozens or hundreds of spreadsheet files on your hard drive, but it's a safe bet that most of them aren't designed for others to use.
A good spreadsheet application does the following:
  • Enables the end user to perform a task that he or she probably would not be able to do otherwise.
  • Provides the appropriate solution to the problem. (A spreadsheet environment isn't always the optimal approach.)
  • Accomplishes what it is supposed to do. This prerequisite may be obvious, but it's not at all uncommon for applications to fail this test.
  • Produces accurate results and is free of bugs.
  • Uses appropriate and efficient methods and algorithms to accomplish its job.
  • Traps errors before the user is forced to deal with them.
  • Does not allow the user to delete or modify important components accidentally (or intentionally).
  • Has a clear and consistent user interface so that the user always knows how to proceed.
  • Has well-documented formulas, macros, and user interface elements that allow for subsequent changes, if necessary.
  • Is designed so that it can be modified in simple ways without making major changes. A basic fact is that a user's needs change over time.
  • Has an easily accessible help system that provides useful information on at least the major procedures.
  • Is designed to be portable and to run on any system that has the proper software (in this case, a copy of a supported version of Excel).
It should come as no surprise that it is possible to create spreadsheet applications for many different usage levels, ranging from a simple fill-in-the-blank template to an extremely complex application that uses a custom interface and may not even look like a spreadsheet.

Steps for Application Development

There is no simple, surefire recipe for developing an effective spreadsheet application. Everyone has his or her own style for creating such applications. In addition, every project is different and therefore requires its own approach. Finally, the demands and technical expertise of the people with whom (or for whom) you work also play a role in how the development process proceeds.
Spreadsheet developers typically perform the following activities:
  • Determine the needs of the user(s)
  • Plan an application that meets these needs
  • Determine the most appropriate user interface
  • Create the spreadsheet, formulas, macros...

Inhaltsverzeichnis