Variables in row...select statement

Snap Happy

New Member
Joined
Dec 8, 2009
Messages
18
Being rather new to VBA I can't seem to get a rows statement to work using a variable to define the row numbers.I have a variable [T1] which is the first row I want to select and a second variable [T2] which is the last row. The code i have used is...Rows([T1],[T2]).select -- Result - Application-defines or object-defined errorRows(T1,T2).select -- Result - Application-defines or object-defined errorRows("T1,T2").select -- Result - Type MismatchRows("T1:T2").select -- Result - Application-defines or object-defined errorRows(T1:T2).select -- Expected : list seperator or )Can anyone tell me what the syntax should be??????
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try:-
Code:
Rows([T1] & ":" & [T2]).select
 
Upvote 0
:banghead:

VBA variables! I thought they were cell references. :oops:
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,723
Members
452,939
Latest member
WCrawford

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