G
Gary''s Student
I can insert a hard return in a hyperlink screentip in VBA with:
Sub Macro2()
With Selection.Hyperlinks(1)
..ScreenTip = "Now is the time" & Chr(10) & "for all good men"
End With
End Sub
Can I do this without VBA ?
Sub Macro2()
With Selection.Hyperlinks(1)
..ScreenTip = "Now is the time" & Chr(10) & "for all good men"
End With
End Sub
Can I do this without VBA ?