Be the first user to complete this post

  • 0
Add to List

Introduction to Excel WorkBook

One complete Excel file is called as WorkBook.

Now this is something interesting, for dealing with the WorkBook, in general we have two options

  1. By using ActiveWorkbook
  2. By Storing the instance of ActiveWorkbook to WorkBook reference

By using ActiveWorkbook

ActiveWorkBook.Sheets("Sheet1").Range("A1").Value=1

By Storing the instance of ActiveWorkbook to WorkBook reference

Dim mainWorkBook as WorkBook

Set mainWorkBook = ActiveWorkbook

mainWorkBook.Sheets("Sheet1").Range("A1").Value

this is basic example, you will see the detail explanation about WorkBooks, WorkSheets and Range in next sections.

Why we prefer the option 2:

Suppose you have many excel files opened already and your MACRO is using ActiveWorkbook option dealing with more than one excel files at a time then your ActiveWorkbook will keep on changing as it deals with different excels and this may confuse the program and you might end up with Errors. On the other hand if you store the instance of a ActiveWorkbook to a reference then all you have to do is just get hold with that reference and it will always refer to the main workbook where your code is written.



Also Read:

  1. VBA-Excel: Read Data from XML File
  2. VBA-Excel: Launch Mozilla Firefox using Microsoft Excel.
  3. VBA Codes - Record Macro
  4. VBA-Excel: Open a Excel WorkBook
  5. VBA-Excel: Create or Add Worksheets at the Run time.