View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default how to determine vba wise if a cell has a hyperlink

Sub ifhyperlink()
For Each c In Selection
If c.Hyperlinks.Count 0 Then MsgBox c.Address
Next
End Sub

--
Don Guillett
SalesAid Software

"Jay Fincannon" wrote in message
...
is there something like 'hasformula' or 'exists'?

jay