INDEX MATCH MULTIPLE CRITERIA
I need an index match formula that can return a match when multiple criteria are met. such as All A's & B's in sheet 2 and indicating a MATCH in sheet 1
Answers
-
Hi @Bobby1
If you simply want to know if a row in a second sheet has the same values as a row in your current sheet, I would actually suggest using a COUNTIFS Function:
=COUNTIFS({Column 1 other sheet}, [Column 1]@row, {Column 2 other sheet}, [Column 2]@row, {Column 3 other sheet}, [Column 3]@row, {Column 4 other sheet}, [Column 4]@row)
This will return a number if any rows in the other sheet match your current row. If you want it to say "MATCH" instead of a number, you can add an IF statement around it:
=IF(COUNTIFS({Column 1 other sheet}, [Column 1]@row, {Column 2 other sheet}, [Column 2]@row, {Column 3 other sheet}, [Column 3]@row, {Column 4 other sheet}, [Column 4]@row) > 1, "MATCH", "")
Let me know if this makes sense and works for you!
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Hello,
Below I have pasted the formula & screenshots of slightly different variations and the outcome.
=IF(COUNTIFS({TEST Copy of Invoicing Process Tracker 202 Range 1}, Payee@row, {{TEST Copy of Invoicing Process Tracker 202 Range 4}, [Agrmt No. 1]@row, {{TEST Copy of Invoicing Process Tracker 202 Range 5}, [Total Inv. Amount]@row, {TEST Copy of Invoicing Process Tracker 202 Range 6}, [Invoice No.]@row, {TEST Copy of Invoicing Process Tracker 202 Range 2}, [Invoice Date]@row) > 1, "MATCH", ""))
=IF(COUNTIFS({TEST Copy of Invoicing Process Tracker 202 Range 1}, Payee@row, {{TEST Copy of Invoicing Process Tracker 202 Range 4}, [Agrmt No. 1]@row, {{TEST Copy of Invoicing Process Tracker 202 Range 5}, [Total Inv. Amount]@row, {TEST Copy of Invoicing Process Tracker 202 Range 6}, [Invoice No.]@row, {TEST Copy of Invoicing Process Tracker 202 Range 2}, [Invoice Date]@row) > 1, "MATCH", "")
=IF(COUNTIFS({TEST Copy of Invoicing Process Tracker 202 Range 1}, Payee@row, {{TEST Copy of Invoicing Process Tracker 202 Range 4}, [Agrmt No. 1]@row, {{TEST Copy of Invoicing Process Tracker 202 Range 5}, [Total Inv. Amount]@row, {TEST Copy of Invoicing Process Tracker 202 Range 6}, [Invoice No.]@row, {TEST Copy of Invoicing Process Tracker 202 Range 2}, [Invoice Date]@row > 1, "MATCH", ""))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!