N
nfantis
Hi,
Thanks in advance for any help. I am trying to add multiple
hyperlinks, separated by a return, in a table cell.
I can add the hyperlink:
objRange = objTable.Cell(5, 2).Range
objDoc.Hyperlinks.Add(objRange, strEachLink(1), , , strEachLink(0))
Now I need some spacing between this link and the following link, so I
have tried this:
objTable.Cell(5, 2).Range.Text += Chr(11)
However, that removes the hyperlink from the text. Anytime I try to
append any text to the cell, it removes the hyperlink.
What am I missing or where is my logic wrong causing this to not work?
Thanks in advance for any help. I am trying to add multiple
hyperlinks, separated by a return, in a table cell.
I can add the hyperlink:
objRange = objTable.Cell(5, 2).Range
objDoc.Hyperlinks.Add(objRange, strEachLink(1), , , strEachLink(0))
Now I need some spacing between this link and the following link, so I
have tried this:
objTable.Cell(5, 2).Range.Text += Chr(11)
However, that removes the hyperlink from the text. Anytime I try to
append any text to the cell, it removes the hyperlink.
What am I missing or where is my logic wrong causing this to not work?