Index/Match for multiple criteria

excelnewb221

New Member
Joined
Dec 14, 2022
Messages
14
Office Version
  1. 365
Platform
  1. Windows
Hi,

I am using Office 365.
I've tried the Concatenation approach and using a Vlookup, but I think it isn't working because the cell contains both numbers and text.
I spent a while trying to sort that out, but I think my files have formatting issues, even after using the TEXT function, so would really appreciate help with Index/Match with multiple criteria please.

My file has two tabs:

Tab 1:
1671068642321.png



Tab 2:
1671068699821.png


I know this is simple, but I guess I'm just dumb.
On Tab 2, in column C, I need to return what the Value is from Tab 1, column C after matching both the Portfolio and CUSIP.

Please let me know if I can explain this better. Really appreciate any help.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Try
ABUE839KWHR2850.1$2,684.56
3205UTK3WTY48F-001$1,976,435.50
PUFBN49J3Z46374.1$0.00
16ED8956FQU3932-002.1$0.05


Book1
ABC
1CUSIPPortfolioValue
216ED8956FQU3932-002.10.05
3PUFBN49J3Z46374.10.00
4ABUE839KWHR2850.12,684.56
53205UTK3WTY48F-0011,976,435.50
Sheet2
Cell Formulas
RangeFormula
C2:C5C2=INDEX(Sheet1!$C$2:$C$5,MATCH(A2:$A$5&B2:$B$5,Sheet1!$A$2:$A$5&Sheet1!$B$2:$B$5,0))
Dynamic array formulas.
 
Upvote 0
awesome, thanks so much for the help Scott.
I'll have to try it against the actual data tomorrow, but toying around with it here, it works great and I think I understand it enough to apply it against the actual data. i'll know for sure tomorrow, will be back...thanks again
 
Upvote 0
Another possible option
Excel Formula:
=FILTER(Sheet1!C2:C100,(Sheet1!A2:A100=A2)*(Sheet1!B2:B100=B2),"")
 
Upvote 0
Solution
Another possible option
Excel Formula:
=FILTER(Sheet1!C2:C100,(Sheet1!A2:A100=A2)*(Sheet1!B2:B100=B2),"")
i guess i can only accept one solution, but this works great as well..
thanks so much.
unfortunately, i'm having some sort of Excel issue where the formulas are not working in my working file.

will try to figure out the cause in the next couple weeks, but both these solutions did what i asked for, and helped me learn so again, appreciate the help
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,257
Messages
6,123,916
Members
449,133
Latest member
rduffieldc

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