A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
There is a worksheet named GetURL in your workbook. I can't read the language of your tab name but it shows in VBA window.
There are two choices -
- Change the worksheet name to something else.
OR
- Change GetURL to something else in you code. Let's say, it is ExURL
Public Function ExURL(c As Range) As String
On Error Resume Next
ExURL = c.Hyperlinks(1).Address
End Function
Then you would need to use ExURL in place of GetURL in your workbook (You can do CTRL+H and replace in entire workbook in one go)