Mar 11, 2003 #1 VBAjedi Programmer Dec 12, 2002 1,197 KH This should be easy: What is the code syntax to set a range object (FirstCell) to refer to the top-left cell in MyRange? Thanks! VBAjedi
This should be easy: What is the code syntax to set a range object (FirstCell) to refer to the top-left cell in MyRange? Thanks! VBAjedi
Mar 11, 2003 1 #2 Zathras Programmer Nov 12, 2002 3,317 US I don't have time to test this (going to lunch) but this should be something like what you need: Code: Set rng = MyRange.Cells(1,1) Upvote 0 Downvote
I don't have time to test this (going to lunch) but this should be something like what you need: Code: Set rng = MyRange.Cells(1,1)
Mar 11, 2003 Thread starter #3 VBAjedi Programmer Dec 12, 2002 1,197 KH Thats it. Thanks! VBAjedi Upvote 0 Downvote