How to add URL with Write Cell activity

Hi. I want to add link with Write Cell activity. How can I do that ?

1 Like

Hi @mgokcek

Try to automate the excel. open the excel and write cell activity and use send hotkeys like ctrl + k to go to hyper link that is shown below and do your desire things

cheers :smiley:

Happy learning :smiley:

1 Like

Hi @mgokcek
use excel application scope and use send hot key as ctrl+k and use type into and type the value

Thanks
Ashwin S

Cleanest way to just send macro after opening excel

With Worksheets(1) 
 .Hyperlinks.Add Anchor:=.Range("a5"), _ 
 Address:="mailto:someone@example.com?subject=hello", _ 
 ScreenTip:="Write us today", _ 
 TextToDisplay:="Support" 
End With 

Hi @mgokcek,

Just put it between quotes. Like this: “URL” Or you mean a hyperlink?

image

Hi
Welcome to UiPath community
Kindly try this once

Cheers @mgokcek

1 Like