Index match help...

wisemank

Board Regular
Joined
Jun 21, 2010
Messages
129
Hi,

I have a complex situation and need to mine data for 3 conditions for an exact match. I currently use the VSC column of data in a vlookup formula to map the FGA then again to map the FGA Name, but the results are less than %80 accurate because of the vlookup restrictions. I want to include the BICEEPR and REL Dept in the lookup to obtain more accurate findings. My current formula is (=VLOOKUP(B3,Sheet2!A:K,8,FALSE) using only the VSC column. How do I add the other fields to an index match formula to find the FGA results? Many thanks,


[TABLE="class: grid, width: 500, align: center"]
<TBODY>[TR]
[TD]VSC[/TD]
[TD]BICEEPR[/TD]
[TD]REL DEPT[/TD]
[TD]FGA[/TD]
[TD]FGA Name[/TD]
[/TR]
[TR]
[TD]2008000[/TD]
[TD]Body[/TD]
[TD]1619[/TD]
[TD]PIA1[/TD]
[TD]FRONT AND UNDERBODY STRUCTURE[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</TBODY>[/TABLE]
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Looks like...
Control+shift+enter, not just enter:
Rich (BB code):
=INDEX(Sheet2!$H$2:$H$100,
  MATCH(1,IF(Sheet2!$A$2:$A$100=$B3,
  IF(Sheet2!$B$2:$B$100=$C3,IF(Sheet2!$C$2:$C$100=$D3,1))),0))
if my presuppositions hold!
 
Upvote 0

Forum statistics

Threads
1,223,727
Messages
6,174,148
Members
452,547
Latest member
Schilling

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