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

IDNameSubjectScoreNote
001BenMath90N
002AnaScience97
003SeanScience85
004MillieMath87

<tbody>
</tbody>

LookUp File

IDNameSubjectScoreNote
004
003
001
-002
-

<tbody>
</tbody>

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

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
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,213,551
Messages
6,114,268
Members
448,558
Latest member
aivin

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