I have a shared job register workbook that has VBA code for creating a hyperlink to related XLS files. This is done through a button on the worksheet.
strSelect = Application.GetOpenFilename("MS Excel Files (*.xls), *.xls", _ Title:="Please select file to be linked by navigating to it...") ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:=strSelect, TextToDisplay:="X"
The problem is that it works fine BEFORE sharing is activated but then comes up with Run-time error ‘1004’ after sharing is enabled.
Can someone tell me what I need to look at so that the workbook can be used as intended with sharing turned on?