I have a column with hyperlinks formula in it, for example:
=HYPERLINK(\"http://example.com\", \"Link\")
I want to get additional column, w
Try this formulas
A2=index(SPLIT(SUBSTITUTE(FORMULATEXT(A1),"=HYPERLINK(""",""),""","""),1,1)
example
A1=HYPERLINK("http://example.com", "Link")
result is
A2=http://example.com