Excel 2019 Power Programming with VBA
eBook - ePub

Excel 2019 Power Programming with VBA

Michael Alexander, Dick Kusleika

Share book
  1. English
  2. ePUB (mobile friendly)
  3. Available on iOS & Android
eBook - ePub

Excel 2019 Power Programming with VBA

Michael Alexander, Dick Kusleika

Book details
Book preview
Table of contents
Citations

About This Book

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.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Excel 2019 Power Programming with VBA an online PDF/ePUB?
Yes, you can access Excel 2019 Power Programming with VBA by Michael Alexander, Dick Kusleika in PDF and/or ePUB format, as well as other popular books in Computer Science & Desktop Applications. We have over one million books available in our catalogue for you to explore.

Information

Publisher
Wiley
Year
2019
ISBN
9781119514916
Edition
1

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...

Table of contents