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,


VSCBICEEPRREL DEPTFGAFGA Name
2008000Body1619PIA1FRONT AND UNDERBODY STRUCTURE

<TBODY>
</TBODY>
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
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,215,575
Messages
6,125,619
Members
449,240
Latest member
lynnfromHGT

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