Formula- Lookup multiple values.

Ebraham

Board Regular
Joined
Mar 21, 2015
Messages
215
Hi All,

i would like to vlookup using Base values and first 4 numbers of amount columns from the data sheet. Desired result is what is required. Kindly advise.

Code:
Data Sheet
[TABLE="width: 285"]
<colgroup><col span="2"><col></colgroup><tbody>[TR]
[TD]Amount[/TD]
[TD]Base[/TD]
[TD]GFRN[/TD]
[/TR]
[TR]
[TD]-13568973.89[/TD]
[TD]145045[/TD]
[TD]HU641814-1[/TD]
[/TR]
[TR]
[TD]1247[/TD]
[TD]145045[/TD]
[TD]HU641816-1[/TD]
[/TR]
[TR]
[TD]7215816[/TD]
[TD]4130[/TD]
[TD]HU641808-1[/TD]
[/TR]
[TR]
[TD]14190476[/TD]
[TD]4130[/TD]
[TD]HU1278252-1[/TD]
[/TR]
[TR]
[TD]0[/TD]
[TD]4130[/TD]
[TD]HU990182-3[/TD]
[/TR]
[TR]
[TD]-2370526545[/TD]
[TD]4130[/TD]
[TD]HU1361846-2[/TD]
[/TR]
[TR]
[TD]880.45746[/TD]
[TD]4130[/TD]
[TD]HU642007-1[/TD]
[/TR]
[TR]
[TD]-7215825.533[/TD]
[TD]4130[/TD]
[TD]HU642007-1[/TD]
[/TR]
[TR]
[TD]343017.25[/TD]
[TD]4130[/TD]
[TD]HU2174384-1[/TD]
[/TR]
[TR]
[TD]-9242795.143[/TD]
[TD]4130[/TD]
[TD]HU1361846-2[/TD]
[/TR]
</tbody>[/TABLE]

[U]Answer
[/U][TABLE="width: 285"]
<colgroup><col span="2"><col></colgroup><tbody>[TR]
[TD]Base[/TD]
[TD]Amount HUF[/TD]
[TD]Desired result[/TD]
[/TR]
[TR]
[TD]145045[/TD]
[TD]-13568973.89  [/TD]
[TD]HU641814-1[/TD]
[/TR]
[TR]
[TD]145045[/TD]
[TD]124756[/TD]
[TD]HU641816-1[/TD]
[/TR]
[TR]
[TD]4130[/TD]
[TD]-23705755.42[/TD]
[TD]HU1361846-2[/TD]
[/TR]
[TR]
[TD]4130[/TD]
[TD]-9242795.143[/TD]
[TD]HU1361846-2[/TD]
[/TR]
[TR]
[TD]4130[/TD]
[TD]-7215825.533[/TD]
[TD]HU642007-1[/TD]
[/TR]
[TR]
[TD]4130[/TD]
[TD][/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]4130[/TD]
[TD][/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]4130[/TD]
[TD][/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]4130[/TD]
[TD][/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]4130[/TD]
[TD][/TD]
[TD]0[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Try this

=INDEX('Data Sheet'!$C$2:$C$11,MATCH(A2&LEFT(B2,4),'Data Sheet'!$B$2:$B$11&LEFT('Data Sheet'!$A$2:$A$11,4),0))

This is an array formula so use Ctrl+Shift+Enter
 
Upvote 0

Forum statistics

Threads
1,215,758
Messages
6,126,697
Members
449,331
Latest member
smckenzie2016

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