View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
mabc mabc is offline
external usenet poster
 
Posts: 2
Default Extract a hyperlink from cell value

I already find the way:

For example, if the cell "B3" has a hyperlink, this code extract the link
value:

Range("B3").Select
MsgBox (ActiveCell.Hyperlinks(1).Address)


"mabc" wrote:

I need how to get the hyperlink from a cell with VBA