Chapter 24 VBA Programming Concepts

In This Chapter

  • Understanding VBA’s language elements, including variables, data types, and constants
  • Using the built-in VBA functions
  • Controlling the execution of your Function procedures
  • Using ranges in your code

To truly go beyond recording macros and into writing your own custom functions, it’s important to understand the underlying Visual Basic for Applications (VBA) typically used in Excel macros.

This chapter starts you on that journey by giving you a primer on some of the objects, variables, events, and error handlers you will encounter in the examples found in this book.

A Brief Overview of the Excel Object Model

VBA is an object-oriented programming language. The basic concept of object-oriented programming is that a software application (Excel in this case) consists of various individual objects, each of which has its own set of features and uses. An Excel application contains cells, worksheets, charts, pivot tables, drawing shapes—the list of Excel’s objects is seemingly endless. Each object has its own set of features, which are called properties, and its own set of uses, called methods.

You can think of this concept just as you would the objects you encounter every day, such as your computer, ...

Get Excel 2016 Formulas now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.