jasonfish11
Board Regular
- Joined
- May 14, 2015
- Messages
- 56
I've got an issue that might be related to excel, sharepoint or possibly the internet browser being used.
The basis of the issue is I have coding in a workbook that should turn the autosave function off when the workbook is opened...
The workbook being accessed is housed on SharePoint Online, and people are asked to access it via Edge (not chrome, due to other chrome issues).
There are about 30 people that use this workbook, and for 3 of them when they open the workbook autosave does NOT turn off. There are other people who I've made sure have the default of "auto-save" being on open it and it works fine.
I can't find a reason why this would work for most people but not work for some.
Has anyone ran into this before?
The basis of the issue is I have coding in a workbook that should turn the autosave function off when the workbook is opened...
VBA Code:
Private Sub Workbook_Open()
If ActiveWorkbook.AutoSaveOn = True Then
ActiveWorkbook.AutoSaveOn = False
End If
The workbook being accessed is housed on SharePoint Online, and people are asked to access it via Edge (not chrome, due to other chrome issues).
There are about 30 people that use this workbook, and for 3 of them when they open the workbook autosave does NOT turn off. There are other people who I've made sure have the default of "auto-save" being on open it and it works fine.
I can't find a reason why this would work for most people but not work for some.
Has anyone ran into this before?