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. Excel-VBA : Send Unique Images Embedded to Mail Body, With Every Mail From MS Outlook using Excel.
  2. VBA-Excel: Copy/Paste data - Copy the data from a call and paste it to another cell
  3. VBA-Excel: Clear data from Excel Sheet(WorkSheet)
  4. VBA-Excel: Application.Wait OR Wait Method
  5. VBA-Excel: Find a word in a specific paragraph and change its formatting