be able to drag this formula down

mattrx731

Board Regular
Joined
Feb 10, 2008
Messages
181
I would like to be able to drag this formula down about 20 rows and have only the red S increase as its dragged down. So the S would change to a T in the row below it, then U, etc.

INDEX(Rentals!$S$2:$S$200,MATCH($D$4,Rentals!$BC$2:$BC$200,0),1)

Thanks
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
I would like to be able to drag this formula down about 20 rows and have only the red S increase as its dragged down. So the S would change to a T in the row below it, then U, etc.

INDEX(Rentals!$S$2:$S$200,MATCH($D$4,Rentals!$BC$2:$BC$200,0),1)

Thanks
Index the ENTIRE range and then use a column incrementer. Something like this...

Let's assume you want to enter the first formula in cell A2 and then drag copy down.

Entered in A2:

=INDEX(Rentals!$S$2:$AB$200,MATCH($D$4,Rentals!$BC$2:$BC$200,0),ROWS(A$2:A2))

So, the formula will evaluate to:

A2: INDEX(Rentals!$S$2:$S$200
A3: INDEX(Rentals!$T$2:$T$200
A4: INDEX(Rentals!$U$2:$U$200
A5: INDEX(Rentals!$V$2:$V$200
A6: etc
A7: etc
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,712
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