loop through cells in named range

后端 未结 3 2007
旧时难觅i
旧时难觅i 2020-12-20 20:17

I am trying to write code that will loop through all cells in a range. Eventually I want to do something more complicated, but since I was having trouble I decided to creat

3条回答
  •  别那么骄傲
    2020-12-20 21:03

    Set Rng =Range("A1:A3") is creating a range object, not a named range. This should work

    Sub foreachtest2()
    Dim c As Range    
    Dim Rng As Range
    Set Rng = Range("A1:A3")
    For Each c In rng
        MsgBox (c.Address)
    Next
    End Sub
    

    If you want to create a Named Range called Rng then

    Range("A1:A3).Name="Rng"
    

    will create it or you can create and loop it like thsi

    Dim c As Range
    Range("a1:a3").Name = "rng"
    For Each c In Names("rng").RefersToRange
    MsgBox c.Address
    Next c
    

提交回复
热议问题