Index Match Lookup Help

manzier

Board Regular
Joined
Jul 21, 2014
Messages
96
Hi All,

I have a matrix that I need to update based on a list I have. Essentially, if the list shows completion, I'll need the matrix to be updated with an "x"

Example, I have this table:

Name1
Training1
Name2Training2
Name2Training4
Name3Training3
Name4Training1

<tbody>
</tbody>

I'll need to create a formula in the matrix below so that the matrix is updated as the table above is updated, please see below

Training1Training2Training3Training4
Name1xx
Name2xx
Name3x
Name4x

<tbody>
</tbody>



Is index match the proper way to go? Please help. Thanks in advance!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Assuming D2="Name1",D3 ="Name2"...,E1="Training1",F1 ="Training2"...

D2="=IF(SUMPRODUCT(($A$1:$A$5=$D2)*($B$1:$B$5=E$1))>0,"×","")"
 
Upvote 0
Name1 and Training4 shouldnt have an x? Place first table in A1:B5 then 2nd in D1:H5. Then in E2:

=IF(COUNTIFS($A:$A,$D2,$B:$B,E$1),"x","")

Drag across and down.
 
Upvote 0

Forum statistics

Threads
1,215,482
Messages
6,125,058
Members
449,206
Latest member
Healthydogs

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