When file is on sharepoint, it throws error when I open. Locally, it opens just fine.

Pat_The_Bat

Board Regular
Joined
Jul 12, 2018
Messages
82
I have a file template that I use on a daily basis. When I open the file, it has a login procedure that it goes through. Basically, it hides all the sheets until the user authenticates; Then once the user authenticates, it makes all the sheets visible.

The problem I'm running into is that I have to save these files on our sharepoint server. When I go to open the file from the SPS, I get screen flickering, and then ultimately the workbook throws an error. (Error handling that I wrote into the code that is).

Whereas, when I moved that same file to my local network, and then opened it; it worked exactly as expected.

Any thoughts on this?



HTML:
Private Sub Workbook_Open()        Application.ScreenUpdating = False         Sheets("Cover").Visible = True    On Error Resume Next                With Sheets(37)    Sheets("Cover").Activate        Range("a1").Select    End With        Application.ScreenUpdating = False    Sheets("Cover").Visible = True             
    Sheet5.Visible = xlSheetVeryHidden    Sheet6.Visible = xlSheetVeryHidden    Sheet9.Visible = xlSheetVeryHidden    Sheet10.Visible = xlSheetVeryHidden    Sheet11.Visible = xlSheetVeryHidden        Sheet13.Visible = xlSheetVeryHidden       Sheet15.Visible = xlSheetVeryHidden    Sheet16.Visible = xlSheetVeryHidden    Sheet17.Visible = xlSheetVeryHidden    Sheet18.Visible = xlSheetVeryHidden    Sheet19.Visible = xlSheetVeryHidden    Sheet20.Visible = xlSheetVeryHidden    Sheet21.Visible = xlSheetVeryHidden    Sheet22.Visible = xlSheetVeryHidden    Sheet23.Visible = xlSheetVeryHidden    Sheet24.Visible = xlSheetVeryHidden    Sheet38.Visible = xlSheetVeryHidden    Sheet39.Visible = xlSheetVeryHidden    Sheet40.Visible = xlSheetVeryHidden    Sheet41.Visible = xlSheetVeryHidden    Sheet42.Visible = xlSheetVeryHidden    Sheet43.Visible = xlSheetVeryHidden    
    Application.ScreenUpdating = True        Load Login                   Login.StartUpPosition = 0   Login.Left = Application.Left + (0.5 * Application.Width) - (0.5 * Login.Width)   Login.Top = Application.Top + (0.5 * Application.Height) - (0.5 * Login.Height)   Login.Show

   
End Sub
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest

Forum statistics

Threads
1,215,507
Messages
6,125,212
Members
449,214
Latest member
mr_ordinaryboy

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