Mar 11, 2003 #1 VBAjedi Programmer Joined Dec 12, 2002 Messages 1,197 Location 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 Joined Nov 12, 2002 Messages 3,317 Location 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 Joined Dec 12, 2002 Messages 1,197 Location KH Thats it. Thanks! VBAjedi Upvote 0 Downvote