Adding Hyperlink with Excel VBA -


i trying add hyperlink excel cell getting error:

rng.formula = "=hyperlink(cell.offset(0, 3).value,"">"")" 

basically hyperlink located within cell , want have text ">" appear in new hyperlink cell.

try using hyperlinks collection:

sheet1.hyperlinks.add sheet1.range("a1"), "http://longlinkaddresshere", , , ">" 

Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -