Solved Hyperlink string excel

andrea93

Member
hello I'm writing a path inside an Excel file. when writing it I write it as a string of course but I would like to make it hypertextual. some idea?
 

sivagelli

Well-Known Member
You can make use of Excel formula "=hyperlink()" while writing the string in to Excel spreadsheet make string appear as hyperlink.

Example: If you want to write path/url in to cell A1, here are the inputs you can for "Set Cell Value" action -

handle: <handle>
cellref - "A1"
value - "=Hyperlink(" & """https://rpaforum.net"""& ")"

This writes string in to A1 and the string appears as hyperlink. You can pass the file path as well in place of url above.

Hope this helps!
 

andrea93

Member
You can make use of Excel formula "=hyperlink()" while writing the string in to Excel spreadsheet make string appear as hyperlink.

Example: If you want to write path/url in to cell A1, here are the inputs you can for "Set Cell Value" action -

handle: <handle>
cellref - "A1"
value - "=Hyperlink(" & """https://rpaforum.net"""& ")"

This writes string in to A1 and the string appears as hyperlink. You can pass the file path as well in place of url above.

Hope this helps!
The syntax is correct? If i would insert a data item that contains url?
 
Hi,

How can I make text as Hyperlink in Calculation Stage. I want to convert text into Hyperlink.

Example : To report issues and all other requests: Global Service Desk

Example : Global Service Desk URl : https://globalservicedesk.com/

In the above example I need 'Global Service Desk' to be changed to hyperlink
 

Attachments

  • Text Hyperlink.png
    1.5 KB · Views: 57
Last edited:
Top