Peter Thompson
Active Member
- Joined
- Dec 15, 2008
- Messages
- 262
All,
I am having an issue with Hyperlinks. Both the address and the text to display use the same string variable, however, while the hyperlink will open up the file the text being diplayed in the cell just says 0.
I have bolded th ehyperlink lines for quick reference.
Has anyone come accross this before?
I am having an issue with Hyperlinks. Both the address and the text to display use the same string variable, however, while the hyperlink will open up the file the text being diplayed in the cell just says 0.
I have bolded th ehyperlink lines for quick reference.
Has anyone come accross this before?
strextensionoutputrefs3 = Mid(strOutputRefs, Len(strOutputRefs) - 3, 1)
StrextensionOutputRefs4 = Mid(strOutputRefs, Len(strOutputRefs) - 4, 1)
If strextensionoutputrefs3 = "." Or strextensionoutpurefs4 = "." Then
wksData.Hyperlinks.Add anchor:=Cells(i, 19), Address:= _
strOutputRefs _
, TextToDisplay:= _
strOutputRefs
Else
End If