Moving back to open file

zodiaceuk

Board Regular
Joined
Nov 20, 2011
Messages
103
Hi All,

I found some code to select a file to open.
This works really well.

I'm trying to build a macro that will switch to this file later on.

Windows (fNameAndPath).Activate
But I keep getting an error, I've tried to add " but no joy.

Can someone help please?

Original code:
Code:
Sub GetFile()
Dim fNameAndPath As Variant
fNameAndPath = Application.GetOpenFilename(FileFilter:="Excel Files (*.XLS), *.XLS", Title:="Select File To Be Opened")
If fNameAndPath = False Then Exit Sub
Workbooks.Open Filename:=fNameAndPath
End Sub
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Use a variable to denote the file once its opened. Like this:
Rich (BB code):
Sub GetFile()
Dim fNameAndPath As Variant, WB As Workbook
fNameAndPath = Application.GetOpenFilename(FileFilter:="Excel Files (*.XLS), *.XLS", Title:="Select File To Be Opened")
If fNameAndPath = False Then Exit Sub
Workbooks.Open Filename:=fNameAndPath
Set WB = ActiveWorkbook
'now you can work with the file using the variable WB
'for example: get the file name and extension
MsgBox WB.Name
End Sub
 
Upvote 0
Thanks Joe,

Later on in the code the vba moves to another wb.
I'd like it to go to the 1st wb without any input from the user.

I.e. Windows wb .Activate

Is this possible
 
Last edited:
Upvote 0
Thanks Joe,

Later on in the code the vba moves to another wb.
I'd like it to go to the 1st wb without any input from the user.

I.e. Windows wb .Activate

Is this possible
Sure, that's the whole point. To make WB the active workbook at any point in your code just use:

WB.Activate
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top