这些是4个范围(演示范围)。如您所见,所选范围被命名为numbers2。类似地,a5:a9是数字1,b2:b3是字母表1和d2:d3是字母表2。我在同一工作簿中的另一个工作表中显示命名范围。 这是代码:
Sub namedRanges()
Dim nm As Name, n As Long, y As Range, z As Worksheet
Application.ScreenUpdating = False
Dim sheet_name As String: sheet_name = InputBox("Provide the name of the worksheet where to list all the named ranges")
Sheets.Add After:=Sheets(Sheets.Count)
Sheets(ActiveSheet.Name).Name = sheet_name
Set z = ActiveSheet
n = 2
With z
.[a1:xfd104856].ClearContents
.[a1:b1] = [{"Name","Refers to"}]
For Each nm In ActiveWorkbook.Names
.Cells(n, 1).End(xlUp)(2) = nm.Name
.Cells(n, 2).End(xlUp)(2) = "'" & nm.RefersTo
n = n + 1
Next nm
End With
Application.ScreenUpdating = True
End Sub
一切都运行正常,除了我得到一些额外的命名范围,而这些范围并不在工作表中。
请参阅创建的新工作表。并且创建了两列。但我应该得到4个命名范围,而不是我得到更多。
代码中有什么问题吗?