How do I split a single Excel column whose values are defined as such:
=HYPERLINK(“http://whatever.com”,”Website Title”)
into two separate columns, one with the title (“Website Title”) and another with the URL (“http://whatever.com”)
anyone?
(this is for Excel 2010)
This would work if you’re willing to use VBA.
Just highlight whatever you need split and run SplitHyperLinkFormula. It will put the two values you wanted in the two cells to the right of your cell.
Warning: If for some reason your hyperlink has a comma in it, this will only return the portion of the URL before the comma.