Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub LeaveFriendlyNamesPlease()
Dim c As Range
On Error Resume Next 'for non web-based addresses
For Each c In Selection
c.Offset(0, 1).Value = c.Hyperlinks(1).Address
Next c
End Sub