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.
lRow = 1
For Each n In ActiveWorkbook.Names
Cells(lRow, 1).Value = n.Name
Cells(lRow, 2).Value = Right(n.RefersTo, Len(n.RefersTo) - 1)
lRow = lRow + 1
Next
Dim sSheet, lRow, n
sSheet = InputBox("Sheet name")
lRow = 1
For Each n In ActiveWorkbook.Names
If Split(Right(n.RefersTo, Len(n.RefersTo) - 1), "!")(0) Like "*" & sSheet & "*" Then
Cells(lRow, 1).Value = n.Name
Cells(lRow, 2).Value = Right(n.RefersTo, Len(n.RefersTo) - 1)
lRow = lRow + 1
End If
Next