View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
itarnak[_13_] itarnak[_13_] is offline
external usenet poster
 
Posts: 1
Default Hyperlinks.Add does nothing


hi,

IN VBA
i have copied one sheet in another (copy/pastespecialthe whole sheet
with values & formats:(i don't want to use the Paste method, onl
PasteSpecial).
Now i want to copy hypelinks too so i do that:

For Each h In FirstSheet.Hyperlinks
SecondSheet.Hyperlinks.Add(Anchor:=h.Range, Address:=h.Address
TextToDisplay:=Switch(Not IsEmpty(h.TextToDisplay), h.TextToDisplay
IsEmpty(h.TextToDisplay), h.TextToDisplay))
Next h


but the links are not copied: SecondSheet has no links....
In a debugguer, i can see that the loop is running fine, bu
SecondSheet.HyperLinks.Count is always 0....


What does that mean?

Regards,
iTarna

--
itarna
-----------------------------------------------------------------------
itarnak's Profile: http://www.excelforum.com/member.php...fo&userid=2786
View this thread: http://www.excelforum.com/showthread.php?threadid=47971