I have defined a named range "Wdwl1" in excel 2007
I want to select this range in vba and perform operations on this selction
I m using the following code
[Wdwl1].Select
It gives error msg "Select method of Range class failed"
I also tried this code
Sheets("1").Range("Wdwl1").Select
but getting the same error. I tried the name of the range and it is correctly spelled and also some other operations are performing well on the same range.
Plz suggest
Thanks in advance
I want to select this range in vba and perform operations on this selction
I m using the following code
[Wdwl1].Select
It gives error msg "Select method of Range class failed"
I also tried this code
Sheets("1").Range("Wdwl1").Select
but getting the same error. I tried the name of the range and it is correctly spelled and also some other operations are performing well on the same range.
Plz suggest
Thanks in advance