Vlookup Question regarding sequential rows

Novellas

New Member
Joined
Aug 15, 2012
Messages
41
=VLOOKUP($D38,Mosiac!$D$7:$EC$2800,18,FALSE)

Above is the VLookup formual I am using.

Problem I'm having is I do not know how to instruct the formula, when I copy it over to the next column, to auto-select the next sequential row number:

In this case, =VLOOKUP($D38,Mosiac!$D$7:$EC$2800,19,FALSE), 20, 21, ...


What's the secret?


Thx
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
You could try to replace 19 with a calculation based on row(<some cell>).
For instance row(d38)+15.

Hope this helps.

Paul
 
Upvote 0
Thanks Paul, but the data is based on the Mosaic tab; the calc based on row isn't pulling from the correct data set

Appreciate the Reply
 
Upvote 0
=VLOOKUP($D38,Mosiac!$D$7:$EC$2800,18,FALSE)

Above is the VLookup formual I am using.

Problem I'm having is I do not know how to instruct the formula, when I copy it over to the next column, to auto-select the next sequential row number:

In this case, =VLOOKUP($D38,Mosiac!$D$7:$EC$2800,19,FALSE), 20, 21, ...


What's the secret?


Thx
One way...

=VLOOKUP($D38,Mosiac!$D$7:$EC$2800,COLUMNS($A1:R1),0)

COLUMNS($A1:R1) evaluates to 18. As you drag copy across a row it will increment to:

COLUMNS($A1:S1) = 19
COLUMNS($A1:T1) = 20
COLUMNS($A1:U1) = 21
COLUMNS($A1:V1) = 22
etc
etc
 
Upvote 0

Forum statistics

Threads
1,216,073
Messages
6,128,634
Members
449,460
Latest member
jgharbawi

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