Collaboration: Automatically start-up with Sheet View option

Ferdib

New Member
Joined
Jan 7, 2020
Messages
15
Office Version
  1. 365
Platform
  1. Windows
Hello everyone,

I've created an Excel file for orders for different countries.
Each country has multiple people working on the file.
There are about 10 people working in the file at the same time continuously.
A lot of filtering on country/product/date/status/etc needs to be done by each individual.
Even though the instructions are clear, there is always someone filtering the columns for everyone...

So my question is; is there a way, with VBA for example, to open this workbook (sheet) in Sheet View (preferably Temporary View) automatically?
The workbook is stored on Sharepoint.

Thanks in advance!
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Posting solution for anyone who might need it in the future:

VBA Code:
Private Sub Workbook_open()
Application.CommandBars.ExecuteMso ("NewSheetView")
End Sub

This will open the workbook in a Temporary View (View > Sheet View).
 
Upvote 0
Solution

Forum statistics

Threads
1,214,978
Messages
6,122,547
Members
449,089
Latest member
davidcom

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