Quick VLOOKUP

unknownymous

Board Regular
Joined
Sep 19, 2017
Messages
249
Office Version
  1. 2016
Platform
  1. Windows
Hi Guys,

Just wanted to ask you have any other way of doing vlook ups in a fastest way.

Example: Reference Tab

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Name[/TD]
[TD]Subject[/TD]
[TD]Score[/TD]
[TD]Note[/TD]
[/TR]
[TR]
[TD]001[/TD]
[TD]Ben[/TD]
[TD]Math[/TD]
[TD]90[/TD]
[TD]N[/TD]
[/TR]
[TR]
[TD]002[/TD]
[TD]Ana[/TD]
[TD]Science[/TD]
[TD]97[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]003[/TD]
[TD]Sean[/TD]
[TD]Science[/TD]
[TD]85[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]004[/TD]
[TD]Millie[/TD]
[TD]Math[/TD]
[TD]87[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

LookUp File

[TABLE="width: 500"]
<tbody>[TR]
[TD]ID[/TD]
[TD]Name[/TD]
[TD]Subject[/TD]
[TD]Score[/TD]
[TD]Note[/TD]
[/TR]
[TR]
[TD]004[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]003[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]001[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]-002[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]-[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

In Lookup file, I normally use this formula in B2 "=vlookup($A:$A,Reference!$A:$G,1,0)" and in C3 "=vlookup($A:$A,Reference!$A:$G,2,0)" and will add +1 (col cel) to the right.

Question: Is there any other formula/way in which it will automatically add +1 for the col index cell?

Any help will be much appreciated as it will save me some time in working with massive data.


Thank you!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Instead of
vlookup($A:$A,Reference!$A:$G,1,0)
Try
vlookup($A:$A,Reference!$A:$G,COLUMN(A1),0)
 
Last edited:
Upvote 0
Let A:E of Sheet1 house the lookup table.

In B2 of Sheet2 enter, copy across, and down:

=VLOOKUP($A2,Sheet1!$A:$E,MATCH(B$1,INDEX(Sheet1!$A:$E,1,0),0),0)

where A2 = 004, etc. and B$1 = Name, Subject, and so on.
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

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