I would like to add a sharepoint file to my tool bar so i can open it directly from the desktop app.
I know the file location in share point, but when adding this to the code It appears to open but I am left with just a blank page with title "fhsdjfhsd"
this is the code I have used...doctored slightly for security.
is it possible?
I know the file location in share point, but when adding this to the code It appears to open but I am left with just a blank page with title "fhsdjfhsd"
this is the code I have used...doctored slightly for security.
VBA Code:
Private Sub Production_Open()
Application.ScreenUpdating = False
Application.AskToUpdateLinks = False
Workbooks.Open filename:= _
"https://my.sharepoint.com/:x:/s/CriticalDateandCapacityPlanning/fhsdjfhsdjfhsd", _
UpdateLinks:=0
End If
Application.ScreenUpdating = True
End Sub
is it possible?