Forum home » Delegate support and help forum » Microsoft Excel VBA Training and help » VBA
VBA
Resolved · Low Priority · Version 2003
Emma has attended:
Excel VBA Intro Intermediate course
VBA
How do I assign a range to an object variable?
For upcoming training course dates see: Pricing & availability
RE: VBA
Emma,
Dim rng As Range
...
Set rng = Range("somename")
Always best to use named ranges.
/Roy MacLean
|
