Excel Options Advanced

Hibbster

Board Regular
Joined
Feb 1, 2006
Messages
95
Is it possible to impose advanced settings on a spreadsheet when a user opens it up?

I have switched off the "chart - show data point values on hover" but that only applies to the settings on my PC and not the spreadsheet.

I want this option to switch off for each user when they open the spreadsheet on their PC and then revert back when they close it.

Can this be done?
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Try placing the code below into workbook_open and workbook_before close events. Note that the workbook must be macro enabled (.xlsm extension if using Excel 2007 or later version) and macros must be enabled.
Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
With Application
    .ShowChartTipNames = True
    .ShowChartTipValues = True
End With
End Sub

Private Sub Workbook_Open()
With Application
    .ShowChartTipNames = False
    .ShowChartTipValues = False
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,970
Messages
6,122,514
Members
449,088
Latest member
RandomExceller01

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