简体   繁体   English

如何在VBA中将Cell Value用作命名范围?

[英]How can I use a Cell Value as a Named Range in VBA?

So my sample document has two worksheets. 所以我的示例文档有两个工作表。 In Sheet2 , column A is filled with hyperlinks to named cells that are in Sheet1 . Sheet2 ,列A填充了指向Sheet1命名单元格的超链接。 For reference, I need to copy the name of the named range that each link is referencing into another sheet where I will also record other items from cells whose locations are relative to the location of the named cell. 作为参考,我需要将每个链接引用的命名范围的名称复制到另一个工作表中,我还将记录其位置相对于指定单元格位置的单元格中的其他项目。 The problem seems to be when I try to set the range from a cell value that has the name of a named cell inside it. 问题似乎是当我尝试从其中包含命名单元格名称的单元格值设置范围时。

Example

Sheet2 (Named "Document map") Sheet2(命名为“文档图”)

 |A                                             |B|
1|Link (address is #_123 which is a named cell) | |
2|Link 2 (address is #_89 which is a named cell)| |
3|Normal text cell, link location not recorded  | |

Sheet1 工作表Sheet1

 |A                       |B                      |C|
1|(named _123)            |relevant info from _123| |
2|relevant info from _123 |                       | |
3|                        |relevant info from _123| |
4|relevant info from _123 |                       | |
5|(named _89)             |                       | |
6|                        |relevant info from _89 | |
7|relevant info from _89  |                       | |

My VBA 我的VBA

Option Explicit
Public Sub getOrderHeaderLocations()
    Dim rng As range
    Dim c As range
    Dim a As Hyperlink
    Dim r As Integer
    Dim tr As range
    Dim map As Worksheet
    Dim transList As Worksheet
    Dim table As Worksheet
    Set map = Sheets("Document map")
    Set transList = Sheets("Sheet1")
    Set table = Sheets.Add
    table.range("A1").Value = "Named Cell"
    table.range("B1").Value = "Info 1"
    table.range("C1").Value = "Info 2"
    table.range("D1").Value = "Info 3"
    map.Activate
    Set rng = range(map.range("A1"), "A" & map.range("A1").CurrentRegion.Rows.Count)
    'use a counter because not all lines have links and I don't want empty rows
    r = 2 'start in the second row of the table sheet (after headers)
    For Each c In rng.Cells
        If c.Hyperlinks.Count > 0 Then
            Set a = c.Hyperlinks.Item(1)
            table.range("A" & r).Value = a.SubAddress
            r = r + 1
        End If
    Next
    ' Glorious, I have a list of the cell names

    table.Activate
    ' set range to the list of names that we made
    Set rng = range(table.range("A2"), "A" & table.range("A2").CurrentRegion.Rows.Count)
    For Each c In rng.Cells
        r = c.Row
        ' set a range from the value of c which has the reference name of a cell)
        tr = range(c.Value) ' Error 91: Object variable or With block variable not set
        table.range("B" & r).Value = transList.range("B" & tr.Row).Value
    Next
End Sub

Where I'm getting error 91, I'm trying to set a range from the value of a cell. 我收到错误91的地方,我试图从单元格的值设置一个范围。 I know that the cell has a name that does exist, and I can verify that by typing in the value ( _123 ) in the name box in excel. 我知道单元格的名称确实存在,我可以通过在excel的名称框中键入值( _123 )来验证。 I'm using Excel 2010. 我正在使用Excel 2010。

设置范围时,您需要使用Set

Set tr = Range(c.Value)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM