Search code examples
arraysexcelexcel-formulacross-reference

Excel Array Functionality for Cross Check


I have 2 columns in my Excel File. First column is called Planned Q and has values separated by Comma. The second column is called Current Q and it has only one value.

As per below screen, I want to check if any of A2 value is in B2 value it should find/call a MATCH otherwise it is Mis-Match. How can I perform this task?

enter image description here

Thank you for your help!


Solution

  • Use SEARCH:

    =IF(ISNUMBER(SEARCH(B2,A2)),"Match","Mis-Match")