Extract URL From Excel Hyperlink Formula

后端 未结 6 1782
温柔的废话
温柔的废话 2020-12-06 08:00

I have an Excel file with hundreds of cells that use the Hyperlink formula =HYPERLINK( , ). I need to extract the plain te

6条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-06 08:29

    Here is an Excel formula that can extract URL from a hyperlink used into cell.

    A1= Excel Cell where you want to extract URL.

    =MID(FORMULATEXT(A1),FIND(CHAR(34),FORMULATEXT(A1))+1,FIND(CHAR(34),FORMULATEXT(A1),FIND(CHAR(34),FORMULATEXT(A1))+1)-1-FIND(CHAR(34),FORMULATEXT(A1)))
    

    Excel Formula to get URL from excel hyperlink [Image]

提交回复
热议问题