Early Draft The Macro Recorder is one of my favorite VBA features. It allows you to learn how to write a large portion of your VBA code by: Just about anything you can do in Excel, can be recorded, which gives you 80% of the code you need. This saves you from having to memorize all the features you need to use. It also helps you learn about Excel and is really cool. What is a Macro? There are many definitions of the word "macro," but here we define it as, VBA programming code that will perform some sort of function, kind of a shortcut, and it's also known as a subroutine. Imagine you do the following process each day:
You could do these steps "manually" or develop VBA Macros to automate the process. Imagine instead of once per day you have to do this for 50 clients each day. Automation becomes imperative. Macros can: Commonly recorded code
You start recording a Macro via the Ribbon ![]() ![]() ![]() ![]() If you click cell C2 the code says Range("C2").Select click cell D5 and it changes to Range("C5").Select Select C2 through C10 and you get Range("C2:C10").Select This is all within the
Saving a macro workbook if you save the workbook you'll get the following error ![]() |