Posted to microsoft.public.excel.programming
|
|
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
|