Macro opens workbook in background

Sven62

Active Member
Joined
Feb 21, 2012
Messages
485
The macro shown is from a command button on a userform. Ever since we were "upgraded" to Office 2016 this macro opens the workbook behind the current window instead of on top... you know... where you can SEE IT!

Is there an easy way to force these open docs to open on top?

Code:
Sub NTMOORG()
Workbooks.Open FileName:="S:\OPS\NOM-NTMO Org Chart 2017.xlsx", ReadOnly:=True
End Sub
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Maybe ...

Code:
workbooks(workbooks.count).activate

I would prefer the behavior you have now.
 
Last edited:
Upvote 0
After you open the other workbook.
 
Upvote 0
Do you mean like this?

Code:
Sub NTMOORG()
Workbooks.Open FileName:="S:\OPS\NOM-NTMO Org Chart 2017.xlsx", ReadOnly:=True
Workbooks(Workbooks.count).activate
End Sub
 
Last edited:
Upvote 0
Hmm... well they are clicking on a command button to open a specific doc and now when they do that they that they don't see anything unless they notice on the taskbar that there is another Excel workbook now open in the background. But I am not confident people will notice that or even look for it. They will just wonder why they can't see the doc they want to see.
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

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