why doesn't this range work?

aiden1983

Board Regular
Joined
Feb 19, 2009
Messages
120
Ok So my script is calling a few workbooks and it can select one cell but when I do this:
Code:
Workbooks(Pay).Sheets("Input").Range(Cells(2, 2), Cells(20, 2)).Select
it doesn't work anymore.

If I do this:
Code:
Workbooks(Pay).Sheets("Input").Cells(2, 2).Select
it works fine, but I need the whole range.

Any ideas?
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
You need to fully qwualify the Cells() objects (otherwise they refer to the Activesheet which may not be the same as the Input sheet. Hence, write it like:

Code:
With Workbooks(Pay).Sheets("Input")
  .Range(.Cells(2, 2), .Cells(20, 2)).Select
End With

and note the period (.) before each Cells().
 
Upvote 0
That works perfect. I am not familiar with the with statements, but it looks like I will have to learn.
 
Upvote 0
The with is essentially providing a shortcut way of writing the following:

Code:
Workbooks(Pay).Sheets("Input").Range(Workbooks(Pay).Sheets("Input").Cells(2, 2), Workbooks(Pay).Sheets("Input").Cells(20, 2)).Select
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,876
Members
449,056
Latest member
ruhulaminappu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top