Thread: Hiding Links
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Cesar Zapata[_2_] Cesar Zapata[_2_] is offline
external usenet poster
 
Posts: 66
Default Hiding Links

Try this


Sub deletescreentip()
Dim cell As Range

On Error Resume Next


For Each cell In Range("a1:a10") ' change your range

cell.Select

ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:= ActiveCell.Value,
ScreenTip:="", TextToDisplay:=ActiveCell.Value

Next cell


End Sub

Cesar Zapata
"David W" wrote in message
...
Does anyone know how to hide the comment box on a hyperlink