Chapter 43: VBA Examples

In This Chapter

Working with ranges

Working with charts

Modifying properties

Speeding up your VBA code

My philosophy about learning to write Excel macros places heavy emphasis on examples. Often, a well thought-out example communicates a concept much better than a lengthy description of the underlying theory. In this book, space limitations don't allow describing every nuance of VBA, so I prepared many examples. Don't overlook the VBA Help system for specific details. To get help while working in the VB Editor window, press F1. For context-sensitive help, select a VBA keyword, object name, property, or method before you press F1.

This chapter consists of several examples that demonstrate common VBA techniques. You may be able to use some examples directly, but in most cases, you must adapt them to your own needs.

Working with Ranges

Most of what you do in VBA probably involves worksheet ranges. When you work with range objects, keep the following points in mind:

• Your VBA code doesn't need to select a range in order to work with the range.

• If your code does select a range, its worksheet must be active.

• The macro recorder doesn't always generate the most efficient code. Often, you can use the recorder to create your macro and then edit the code to make it more efficient.

• I recommend that you use named ranges in your VBA code. For example, a reference such as Range (“Total”) is better than Range (“D45”). In the latter case, you need ...

Get Excel 2013 Bible 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.