Currently I have some hyperlinks in my excel
I want to remove them with the help of UiPath
(ctr+a → right click → Remove Hyperlinks.) → Currently this I am doing manually to remove hyperlinks
How can I do this with the help of Uipath ?
Currently I have some hyperlinks in my excel
I want to remove them with the help of UiPath
(ctr+a → right click → Remove Hyperlinks.) → Currently this I am doing manually to remove hyperlinks
How can I do this with the help of Uipath ?
Hi @Ishan_Shelke1 ,
Could you try reading the Excel Sheet as a Datatable and simply writing the Datatable back to Excel and check?
How do I do this inside Excel ?
alternative using VBA
Function RemoveAllHyperlinks(sheetName As String)
ActiveWorkbook.Sheets(sheetName).Activate
ActiveSheet.Hyperlinks.Delete
ActiveWorkbook.Save
End Function
{"SheetName"}
Try this steps
Enable Show modern in the filters
Note : You need to give the necessary conditions to check the menu item panel displayed(Element Exists) and the condition to check whether the Remove Hyperlink is exists or not(Text Exists)
Regards
Sudharsan
@Ishan_Shelke1 Check this below attached workflow,
RemoveHyperlinks.zip (9.8 KB)
Hope this may help you
Getting this error
Take any Excel @Ishan_Shelke1
Goto File-> Option-> Trust Center-> Macro…->Enable all
Regards
Sudharsan
@Ishan_Shelke1 , Please do below changes in excel settings,
For more information check this below link,
Hope this may help you
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.