excel: extract url from hyperlink By Ricardo MallaFebruary 10, 2023February 10, 2023uncategorized excel does not have a native way to do this, buy you canĀ create a function using a visual basing script/ Open VB ALT+F11 create the following script: Function URL(Hyperlink As Range) URL = Hyperlink.Hyperlinks(1).Address End Function