I am currently using this VBA code to turn off AutoSave:
Every time this code is run the file will Save before I can carry on.
This is a large file so this Save is time consuming, and I would like to by-pass it.
Please can you advise if there is some VBA code I can add that will prevent the Save after AutoSave is turned off?
Thanks
VBA Code:
If Val(Application.Version) > 15 Then
If ActiveWorkbook.AutoSaveOn Then ActiveWorkbook.AutoSaveOn = False
End If
Every time this code is run the file will Save before I can carry on.
This is a large file so this Save is time consuming, and I would like to by-pass it.
Please can you advise if there is some VBA code I can add that will prevent the Save after AutoSave is turned off?
Thanks