![]() |
Syntax advice
Assume a named range "my_rng"
One can say: Range("my_rng")(5) One can say : [my_rng].cells(5) One can say: Evaluate("my_rng")(5) But one cannot say: [my_rng](5) Why is that? -- Terry "I said I never had much use for one, I never said I didn't know how to use one." M. Quigley |
Syntax advice
Because Excel doesn't parse out []( ) as anything meaningful would be my
guess. Still, I don't know why you would use anything besides Range("my_rng")(5) -- Regards, Tom Ogilvy Terry von Gease wrote in message ... Assume a named range "my_rng" One can say: Range("my_rng")(5) One can say : [my_rng].cells(5) One can say: Evaluate("my_rng")(5) But one cannot say: [my_rng](5) Why is that? -- Terry "I said I never had much use for one, I never said I didn't know how to use one." M. Quigley |
Syntax advice
From the On-line help I would have expected ["my_rng"](5) to work, but
it doesn't either. Alan Beban Tom Ogilvy wrote: Because Excel doesn't parse out []( ) as anything meaningful would be my guess. Still, I don't know why you would use anything besides Range("my_rng")(5) -- Regards, Tom Ogilvy Terry von Gease wrote in message ... Assume a named range "my_rng" One can say: Range("my_rng")(5) One can say : [my_rng].cells(5) One can say: Evaluate("my_rng")(5) But one cannot say: [my_rng](5) Why is that? -- Terry "I said I never had much use for one, I never said I didn't know how to use one." M. Quigley |
Syntax advice
Because I loathe typing and each keystroke increases the probability of
malfeasance. But the curiosity here is that 'Evaluate("my_rng")(5)' works and, as per the documentation, '[expression]' is a shortcut format for 'Evaluate("expression")', it would not be unreasonable to expect '[my_rng](5)' to work as well. Go figure.... -- Terry "I said I never had much use for one, I never said I didn't know how to use one." M. Quigley "Tom Ogilvy" wrote in message ... Because Excel doesn't parse out []( ) as anything meaningful would be my guess. Still, I don't know why you would use anything besides Range("my_rng")(5) -- Regards, Tom Ogilvy Terry von Gease wrote in message ... Assume a named range "my_rng" One can say: Range("my_rng")(5) One can say : [my_rng].cells(5) One can say: Evaluate("my_rng")(5) But one cannot say: [my_rng](5) Why is that? -- Terry "I said I never had much use for one, I never said I didn't know how to use one." M. Quigley |
Syntax advice
? ["my_rng"]
my_rng It just evaluates the string constant "my_rng" to a string - doesn't see it as a range name. -- Regards, Tom Ogilvy Alan Beban wrote in message ... From the On-line help I would have expected ["my_rng"](5) to work, but it doesn't either. Alan Beban Tom Ogilvy wrote: Because Excel doesn't parse out []( ) as anything meaningful would be my guess. Still, I don't know why you would use anything besides Range("my_rng")(5) -- Regards, Tom Ogilvy Terry von Gease wrote in message ... Assume a named range "my_rng" One can say: Range("my_rng")(5) One can say : [my_rng].cells(5) One can say: Evaluate("my_rng")(5) But one cannot say: [my_rng](5) Why is that? -- Terry "I said I never had much use for one, I never said I didn't know how to use one." M. Quigley |
Syntax advice
and then .. ([myRange])(1) DOES work again..
as the () around the[] force the name to be evaluated first keepITcool < email : keepitcool chello nl (with @ and .) < homepage: http://members.chello.nl/keepitcool "Terry von Gease" wrote: Assume a named range "my_rng" One can say: Range("my_rng")(5) One can say : [my_rng].cells(5) One can say: Evaluate("my_rng")(5) But one cannot say: [my_rng](5) Why is that? -- Terry "I said I never had much use for one, I never said I didn't know how to use one." M. Quigley |
All times are GMT +1. The time now is 01:44 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com