I am trying to make a simple macro where that will open a folder where you can then search for a customer's order.
I have figured out how to open the folder, but it opens it in teh background and I know the person that will use this spreadsheet will be confused by that. SO is there a way to make an open folder the active window?
Something similar to Windows("Book1").Activate?
Here is what I have and as always any help is much appreciated.
I have figured out how to open the folder, but it opens it in teh background and I know the person that will use this spreadsheet will be confused by that. SO is there a way to make an open folder the active window?
Something similar to Windows("Book1").Activate?
Here is what I have and as always any help is much appreciated.
Code:
Sub OpenFolderRequest()
MsgBox ("Please enter the name of the customer in the search field in the upper right")
Shell ("G:\Windows\explorer.exe G:\JGM (MBA)\Customer Orders")
End Sub