E
Ed
(Using XL2000) I selected a range and used Insert>>Name>>Define to add the
name. It shows up in the Name box in the top left, and can be selected from
there.
I was trying to select the range using
For Each nm In wkb.Names
If Left(nm, 4) = "Calc" Then
Set rng = Range(nm)
End If
but it kept coming up with an error. So I inserted a Debug.Print for every
name, and the name was not there!
Two questions, then:
(1) How do I set the name of a range so my code will see it?
(2) Since the Name belongs to the Book object, but the Range belongs to the
Sheet object, am I setting the range properly?
Ed
name. It shows up in the Name box in the top left, and can be selected from
there.
I was trying to select the range using
For Each nm In wkb.Names
If Left(nm, 4) = "Calc" Then
Set rng = Range(nm)
End If
but it kept coming up with an error. So I inserted a Debug.Print for every
name, and the name was not there!
Two questions, then:
(1) How do I set the name of a range so my code will see it?
(2) Since the Name belongs to the Book object, but the Range belongs to the
Sheet object, am I setting the range properly?
Ed