Jul 07 2023 01:06 AM
Dear all,
I have a requirement to copy excel hyperlink urls in group of cells under one column to another column of cells with a formula. The hyperlink on the cell has a display name and when click on the display name then it redirects to the link url. So, I just need to extract automatically the hyperlink url with formulas.
Please share your ideas or thoughts on how to extract hyperlink url from one cell to another cell with formula automatically. Thank you for your help and support.
Best Regards,
Narayana Reddy
Jul 07 2023 03:13 AM
SolutionIn Excel for Windows or Mac, you can create a custom VBA function:
Function GetURL(cell As Range) As String
GetURL = cell.Hyperlinks(1).Address
End Function
Jul 07 2023 03:22 AM