Referencing a Workbook using VBA

Code
Concept Day – 1,
Referencing a Workbook using VBA
Using
Workbook Names
If you have the exact name of the workbook that you want to
refer to, you can use the name in the code.
Let’s begin with a simple example.
If you have two workbooks open, and you want to activate the
workbook with the name – Examples.xlsx, you can use the below code:
Sub ActivateWorkbook()Workbooks("Examples.xlsx").ActivateEnd Sub
If you want to activate a workbook and select a specific cell in a worksheet in that workbook, you need to give the entire address of the cell (including the Workbook and the Worksheet name).
Sub ActivateWorkbook()Workbooks("Examples.xlsx").Worksheets("Sheet1").ActivateRange("A1").SelectEnd Sub
The above code first activates Sheet1 in the Examples.xlsx
workbook and then selects cell A1 in the sheet.
You will often see a code where a reference to a worksheet or a
cell/range is made without referring to the workbook. This happens when you’re
referring to the worksheet/ranges in the same workbook that has the code in it
and is also the active workbook. However, in some cases, you do need to specify
the workbook to make sure the code works (more on this in the ThisWorkbook
section).
Using
Index Numbers
You can also refer to the workbooks based on their index number.
For example, if you have three workbooks open, the following
code would show you the names of the three workbooks in a message box (one at a
time).
Sub WorkbookName()MsgBox Workbooks(1).NameMsgBox Workbooks(2).NameMsgBox Workbooks(3).NameEnd Sub
The above code uses MsgBox – which is a function that shows a
message box with the specified text/value (which is the workbook name in this
case).
One of the troubles I often have with using index numbers with
Workbooks is that you never know which one is the first workbook and which one
is the second and so on. To be sure, you would have to run the code as shown
above or something similar to loop through the open workbooks and know their
index number.
Excel treats the workbook opened first to have the index number
as 1, and the next one as 2 and so on.
Despite this drawback, using index numbers can come in handy.
For example, if you want to loop through all the open workbooks and save all,
you can use the index numbers. In this case, since you want this to happen to
all the workbooks, you’re not concerned about their individual index numbers.
Using
ActiveWorkbook
ActiveWorkbook, as the name suggests, refers to the workbook
that is active.
The below code would show you the name of the active workbook.
Sub ActiveWorkbookName()MsgBox ActiveWorkbook.NameEnd Sub
When you use VBA to activate another workbook, the ActiveWorkbook
part in the VBA after that would start referring to the activated workbook.
Here is an example of this.
If you have a workbook active and you insert the following code
into it and run it, it would first show the name of the workbook that has the code
and then the name of Examples.xlsx (which gets activated by the code).
Sub ActiveWorkbookName()MsgBox ActiveWorkbook.NameWorkbooks("Examples.xlsx").ActivateMsgBox ActiveWorkbook.NameEnd Sub
Using
ThisWorkbook
ThisWorkbook refers to the workbook where the code is being
executed.
Every workbook would have a ThisWorkbook object as a part of it
(visible in the Project Explorer).
‘ThisWorkbook’ can store regular macros (similar to the ones
that we add-in modules) as well as event procedures. An event
procedure is something that is triggered based on an event –
such as double-clicking on a cell, or saving a workbook or activating a
worksheet.
For example, if you double-click on the ThisWorkbook object in
the Project Explorer and copy-paste the below code in it, it will show the cell
address whenever you double-click on any of the cells in the entire workbook.
Private Sub Workbook_SheetBeforeDoubleClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean)MsgBox Target.AddressEnd Sub
While ThisWorkbook’s main role is to store event procedure, you
can also use it to refer to the workbook where the code is being executed.
The below code would return the name of the workbook in which
the code is being executed.
Sub ThisWorkbookName()MsgBox ThisWorkbook.NameEnd Sub
The benefit of using ThisWorkbook (over ActiveWorkbook) is that
it would refer to the same workbook (the one that has the code in it) in all
the cases. So if you use a VBA code to add a new workbook, the ActiveWorkbook
would change, but ThisWorkbook would still refer to the one that has the code.
The following code will create a new workbook.
Sub CreateNewWorkbook()Workbooks.AddEnd Sub
When you add a new workbook, it becomes the active workbook.
The following code will add a new workbook and then show you the
name of that workbook (which would be the default Book1 type name).
Sub CreateNewWorkbook()Workbooks.AddMsgBox ActiveWorkbook.NameEnd Sub
Open a Workbook using VBA
You can use VBA to open a specific workbook when you know the
file path of the workbook.
The below code will open the workbook – Examples.xlsx which is
in the Documents folder on my system.
Sub OpenWorkbook()Workbooks.Open ("C:\Users\sumit\Documents\Examples.xlsx")End Sub
In case the file exists in the default folder, which is the
folder where VBA saves new files by default, then you can just specify the
workbook name – without the entire path.
Sub OpenWorkbook()Workbooks.Open ("Examples.xlsx")End Sub
In case the workbook that you’re trying to open doesn’t exist,
you’ll see an error.
To avoid this error, you can add a few lines to your code to
first check whether the file exists or not and if it exists then try to open
it.
The below code would check the file location and if it doesn’t
exist, it will show a custom message (not the error message):
Sub OpenWorkbook()If Dir("C:\Users\sumit\Documents\Examples.xlsx") <> "" ThenWorkbooks.Open ("C:\Users\sumit\Documents\Examples.xlsx")ElseMsgBox "The file doesn't exist"End IfEnd Sub
You can also use the Open dialog box to select the file that you
want to open.
Sub OpenWorkbook()On Error Resume NextDim FilePath As StringFilePath = Application.GetOpenFilenameWorkbooks.Open (FilePath)End Sub
The above code opens the Open dialog box. When you select a file
that you want to open, it assigns the file path to the FilePath variable.
Workbooks.Open then uses the file path to open the file.
In case the user doesn’t open a file and clicks on Cancel
button, FilePath becomes False. To avoid getting an error in this case, we have
used the ‘On Error Resume Next’ statement.
Related: Learn All
about Error Handling in Excel VBA
Saving a Workbook
To save the active workbook, use the code below:
Sub SaveWorkbook()ActiveWorkbook.SaveEnd Sub
This code works for the workbooks that have already been saved
earlier. Also, since the workbook contains the above macro, if it hasn’t been
saved as a .xlsm (or .xls) file, you will lose the macro when you open it next.
If you’re saving the workbook for the first time, it will show
you a prompt as shown below:
When saving for the first time, it’s better to use the ‘Saveas’
option.
The below code would save the active workbook as a .xlsm file in
the default location (which is the document folder in my system).
Sub SaveWorkbook()ActiveWorkbook.SaveAs Filename:="Test.xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabledEnd Sub
If you want the file to be saved in a specific location, you
need to mention that in the Filename value. The below code saves the file on my
desktop.
Sub SaveWorkbook()ActiveWorkbook.SaveAs Filename:="C:\Users\sumit\Desktop\Test.xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabledEnd Sub
If you want the user to get the option to select the location to
save the file, you can use call the Saveas dialog box. The below code shows the
Saveas dialog box and allows the user to select the location where the file
should be saved.
Sub SaveWorkbook()Dim FilePath As StringFilePath = Application.GetSaveAsFilenameActiveWorkbook.SaveAs Filename:=FilePath & ".xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabledEnd Sub
Note that instead of
using FileFormat:=xlOpenXMLWorkbookMacroEnabled, you can also
use FileFormat:=52, where 52 is the code xlOpenXMLWorkbookMacroEnabled.
Saving All Open Workbooks
If you have more than one workbook open and you want to save all
the workbooks, you can use the code below:
Sub SaveAllWorkbooks()Dim wb As WorkbookFor Each wb In Workbookswb.SaveNext wbEnd Sub
The above saves all the workbooks, including the ones that have
never been saved. The workbooks that have not been saved previously would get
saved in the default location.
If you only want to save those workbooks that have previously
been saved, you can use the below code:
Sub SaveAllWorkbooks()Dim wb As WorkbookFor Each wb In WorkbooksIf wb.Path <> "" Thenwb.SaveEnd IfNext wbEnd Sub
Saving and Closing All Workbooks
If you want to close all the workbooks, except the workbook that
has the current code in it, you can use the code below:
Sub CloseandSaveWorkbooks()Dim wb As WorkbookFor Each wb In WorkbooksIf wb.Name <> ThisWorkbook.Name Thenwb.Close SaveChanges:=TrueEnd IfNext wbEnd Sub
The above code would close all the workbooks (except the
workbook that has the code – ThisWorkbook). In case there are changes in these
workbooks, the changes would be saved. In case there is a workbook that has
never been saved, it will show the save as dialog box.
Save a Copy of the
Workbook (with Timestamp)
When I am working with complex data and dashboard in Excel
workbooks, I often create different versions of my workbooks. This is helpful
in case something goes wrong with my current workbook. I would at least have a
copy of it saved with a different name (and I would only lose the work I did after
creating a copy).
Here is the VBA code that will create a copy of your workbook
and save it in the specified location.
Sub CreateaCopyofWorkbook()ThisWorkbook.SaveCopyAs Filename:="C:\Users\sumit\Desktop\BackupCopy.xlsm"End Sub
The above code would save a copy of your workbook every time you
run this macro.
While this works great, I would feel more comfortable if I had
different copies saved whenever I run this code. The reason this is important
is that if I make an inadvertent mistake and run this macro, it will save the
work with the mistakes. And I wouldn’t have access to the work before I made
the mistake.
To handle such situations, you can use the below code that saves
a new copy of the work each time you save it. And it also adds a date and
timestamp as a part of the workbook name. This can help you track any mistake
you did as you never lose any of the previously created backups.
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)ThisWorkbook.SaveCopyAs Filename:="C:\Users\sumit\Desktop\BackupCopy" & Format(Now(), "dd-mm-yy-hh-mm-ss-AMPM") & ".xlsm"End Sub
The above code would create a copy every time you run this
macro and add a
date/time stamp to the workbook name.
Create a New Workbook for Each
Worksheet
In some cases, you may have a workbook that has multiple
worksheets, and you want to create a workbook for each worksheet.
This could be the case when you have monthly/quarterly reports
in a single workbook and you want to split these into one workbook for each
worksheet.
Or, if you have department wise reports and you want to split
these into individual workbooks so that you can send these individual workbooks
to the department heads.
Here is the code that will create a workbook for each worksheet,
give it the same name as that of the worksheet, and save it in the specified
folder.
Sub CreateWorkbookforWorksheets()Dim ws As WorksheetDim wb As WorkbookFor Each ws In ThisWorkbook.WorksheetsSet wb = Workbooks.Addws.Copy Before:=wb.Sheets(1)Application.DisplayAlerts = Falsewb.Sheets(2).DeleteApplication.DisplayAlerts = Truewb.SaveAs "C:\Users\sumit\Desktop\Test\" & ws.Name & ".xlsx"wb.CloseNext wsEnd Sub
In the above code, we have used two variable ‘ws’ and ‘wb’.
The code goes through each worksheet (using the For Each
Next loop) and creates a workbook for it. It also uses the copy
method of the worksheet object to create a copy of the worksheet in the new
workbook.
Note that I have used the SET statement to assign the ‘wb’
variable to any new workbook that is created by the code.
You can use this technique to assign a workbook object to a
variable. This is covered in the next section.
Assign Workbook Object to a
Variable
In VBA, you can assign an object to a variable, and then use the
variable to refer to that object.
For example, in the below code, I use VBA to add a new workbook
and then assign that workbook to the variable wb. To do this, I need to use the
SET statement.
Once I have assigned the workbook to the variable, all the
properties of the workbook are made available to the variable as well.
Sub AssigntoVariable()Dim wb As WorkbookSet wb = Workbooks.Addwb.SaveAs Filename:="C:\Users\sumit\Desktop\Examples.xlsx"End Sub
Note that the first step in the code is to declare ‘wb’ as a
workbook type variable. This tells VBA that this variable can hold the workbook
object.
The next statement uses SET to assign the variable to the new
workbook that we are adding. Once this assignment is done, we can use the wb
variable to save the workbook (or do anything else with it).
Looping through Open Workbooks
We have already seen a few examples codes above that used
looping in the code.
In this section, I will explain different ways to loop through
open workbooks using VBA.
Suppose you want to save and close all the open workbooks,
except the one with the code in it, then you can use the below code:
Sub CloseandSaveWorkbooks()Dim wb As WorkbookFor Each wb In WorkbooksIf wb.Name <> ThisWorkbook.Name Thenwb.Close SaveChanges:=TrueEnd IfNext wbEnd Sub
The above code uses the For Each loop to go through each
workbook in the Workbooks collection. To do this, we first need to declare ‘wb’
as the workbook type variable.
In every loop cycle, each workbook name is analyzed and if it
doesn’t match the name of the workbook that has the code, it’s closed after
saving its content.
The same can also be achieved with a different loop as shown
below:
Sub CloseWorkbooks()Dim WbCount As IntegerWbCount = Workbooks.CountFor i = WbCount To 1 Step -1If Workbooks(i).Name <> ThisWorkbook.Name ThenWorkbooks(i).Close SaveChanges:=TrueEnd IfNext iEnd Sub
The above code uses the For Next
loop to close all the workbooks except the one that has the
code in it. In this case, we don’t need to declare a workbook variable, but
instead, we need to count the total number of open workbooks. When we have the
count, we use the For Next loop to go through each workbook. Also, we use the
index number to refer to the workbooks in this case.
Note that in the above code, we are looping from WbCount to 1
with Step -1. This is needed as with each loop, the workbook gets closed and
the number of workbooks gets decreased by 1.
Error
while Working with the Workbook Object (Run-time error ‘9’)
One of the most common error you may encounter when working with
workbooks is – Run-time Error ‘9’ – Subscript out of range.

Generally, VBA errors are not very informative and often leave
it to you to figure out what went wrong.
Here are some of the possible reasons that may lead to this
error:
·
The workbook that you’re trying to access does not exist.
For example, if I am trying to access the fifth workbook using Workbooks(5),
and there are only 4 workbooks open, then I will get this error.
·
If you’re using a wrong name to refer to the workbook. For
example, if your workbook name is Examples.xlsx and you use Example.xlsx. then
it will show you this error.
·
If you haven’t saved a workbook, and you use the extension, then
you get this error. For example, if your workbook name is Book1, and you use
the name Book1.xlsx without saving it, you will get this error.
·
The workbook you’re trying to access is closed.
Get a List of All Open Workbooks
If you want to get a list of all the open workbooks in the
current workbook (the workbook where you’re running the code), you can use the
below code:
Sub GetWorkbookNames()Dim wbcount As Integerwbcount = Workbooks.CountThisWorkbook.Worksheets.AddActiveSheet.Range("A1").ActivateFor i = 1 To wbcountRange("A1").Offset(i - 1, 0).Value = Workbooks(i).NameNext iEnd Sub
The above code adds a new worksheet and then lists the name of
all the open workbooks.
If you want to get their file path as well, you can use the
below code:
Sub GetWorkbookNames()Dim wbcount As Integerwbcount = Workbooks.CountThisWorkbook.Worksheets.AddActiveSheet.Range("A1").ActivateFor i = 1 To wbcountRange("A1").Offset(i - 1, 0).Value = Workbooks(i).Path & "\" & Workbooks(i).NameNext iEnd Sub
Open the
Specified Workbook by Double-clicking on the Cell
If you have a list of file paths for Excel workbooks, you can
use the below code to simply double-click on the cell with the file path and it
will open that workbook.
Private Sub Workbook_SheetBeforeDoubleClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean)Workbooks.Open Target.ValueEnd Sub
This code would be placed in the ThisWorkbook code window.
To do this:
·
Double click on the ThisWorkbook object in the project explorer.
Note that the ThisWorkbook object should be in the workbook where you want this
functionality.
·
Copy and paste the above code.
Now, if you have the exact path of the files that you want to
open, you can do that by simply double-clicking on the file path and VBA would
instantly open that workbook.
Where to Put the VBA Code
Wondering where the VBA code goes in your Excel workbook?
Excel has a VBA backend called the VBA editor. You need to copy
and paste the code into the VB Editor module code window.
Here are the steps to do this:
1.
Go to the Developer tab.
2.
Click on the Visual Basic option. This will open the VB editor
in the backend.
3.
In the Project Explorer pane in the VB Editor, right-click on
any object for the workbook in which you want to insert the code. If you don’t
see the Project Explorer go to the View tab and click on Project Explorer.
4.
Go to Insert and click on Module. This will insert a module
object for your workbook.
5.
Copy and paste the code in the module window.
You
May Also Like the Following Excel VBA Tutorials:
Comments
Post a Comment