Forgive my noob Q, but I'm mostly self-taught :/
I want to go to a 2nd open workbook, go to a specific sheet within that workbook, and select a specific range on that sheet. I currently use 3 lines:
Windows("data_file.xlsm").Activate
Sheets("raw_data").Select
Range("control_range").Select
That can't be all that efficient...though it's my understanding that I can't SELECT the control_range range unless the sheet it's on is active.
So is there a 1-line command I can use to tell Excel to go to a specific range on a 2nd open workbook?
I want to go to a 2nd open workbook, go to a specific sheet within that workbook, and select a specific range on that sheet. I currently use 3 lines:
Windows("data_file.xlsm").Activate
Sheets("raw_data").Select
Range("control_range").Select
That can't be all that efficient...though it's my understanding that I can't SELECT the control_range range unless the sheet it's on is active.
So is there a 1-line command I can use to tell Excel to go to a specific range on a 2nd open workbook?