First off, I am new to this all. I have a macro which will open all of the hyperlinks I have in an excel file, but I would like to automate the process in microsoft flow/power automate. I am not sure how to convert this to where it will work in office scripts. Any help would be appreciated.
Sub BatchOpenHyperLinks_Workbook()
Dim objWorksheet As Excel.Worksheet
Dim objSelectedRange As Excel.Range
Dim objHyperlink As Excel.Hyperlink
'Process each worksheet
For Each objWorksheet In ThisWorkbook.Sheets
For Each objHyperlink In objWorksheet.Hyperlinks
objHyperlink.Follow
Next
Next
End Sub