I have a spreadsheet that opens to a form which has buttons on it (a dashboard).
The buttons have the following logic:
Private Sub CommandButton2_Click()
Worksheets("Issue Tracking Log").Select
UserForm5_dash.Hide
End Sub
Private Sub CommandButton5_Click()
Worksheets("Open Due in Future").Select
UserForm5_dash.Hide
End Sub
It's pretty straight forward. It's just supposed to bring you to a worksheet. This works fine when I have the excel file locally. I then protect and share it and put it on the share drive. It then gets opened via a wiki site link and therefore opens in the browser. But then these very same buttons yeild the error: method 'sheets' of object '_Global" failed
Is there something I'm not aware of that somebody is aware of?
The buttons have the following logic:
Private Sub CommandButton2_Click()
Worksheets("Issue Tracking Log").Select
UserForm5_dash.Hide
End Sub
Private Sub CommandButton5_Click()
Worksheets("Open Due in Future").Select
UserForm5_dash.Hide
End Sub
It's pretty straight forward. It's just supposed to bring you to a worksheet. This works fine when I have the excel file locally. I then protect and share it and put it on the share drive. It then gets opened via a wiki site link and therefore opens in the browser. But then these very same buttons yeild the error: method 'sheets' of object '_Global" failed
Is there something I'm not aware of that somebody is aware of?