Book Image

VBA Automation for Excel 2019 Cookbook

By : Mike Van Niekerk
Book Image

VBA Automation for Excel 2019 Cookbook

By: Mike Van Niekerk

Overview of this book

Visual Basic for Applications (VBA) is a programming language developed by Microsoft to automate tasks in MS Office applications. This book will help you to focus on the essential aspects of your role by automating mundane tasks in Excel and other Office applications. With comprehensive coverage of VBA delivered in the form of practice problems and bite-sized recipes, this book will help you to hit the ground running. Unlike most books that assume prior programming experience, this book starts with the fundamentals and gradually progresses to solving bigger problems. You’ll start by becoming familiar with VBA so that you can start recording macros right away. With this foundation in place, you’ll advance to using the full capabilities of the language as you apply loops, functions, and custom dialog boxes to design your own automation programs. You'll also get to grips with embedded macros and other advanced tools to enhance productivity and explore topics relating to app performance and security. Throughout this VBA book, you’ll cover multiple practice projects in Excel, Word, and PowerPoint while exploring tips and best practices to hone your skills. By the end of this book, you’ll have developed the skills you need to use VBA to create your own programs that control MS Office applications.
Table of Contents (20 chapters)

Making ranges work

In this last recipe, we're going to create and add data to a short list, making use of everything we've learned in the sections about references, properties, and methods.

Getting ready

Ranges.xlsm needs to be kept open. Now, follow these steps:

  1. Insert a new sheet, and then add the following data to Sheet2:

    Figure 7.8 – Preparation

  2. Press Alt + F11 to activate the VBA Editor, and then insert a new module and change its name to Range_Select.

How to do it…

  1. In the Editor, create a new Sub procedure:
    Sub RangeSelect()
    End Sub
  2. Add the following line of code to select cell A5:
    Sub RangeSelect()
       Range("A5").Select
    End Sub
  3. Next, change the value of cell A5 with the following code:
    Sub RangeSelect()
       Range("A5").Select
       ActiveCell.Value = 4
    End Sub
  4. Add another line of code to assign a value to cell B5. Instead of the normal referencing, we...