• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Comparing one target row to a source table (8RowsX9Columns) and returns a string

nimesh8310

New Member
Hi All,


I want a formula which return a string/cell value after comparing target row(consists of 12 columns) with source table (10 rows x 13 columns). This means if all the values of target row is matching with any of the 10 rows of the source table, it should return the first column value.


I can give the excel file if required.


Regards

Nimesh
 
Hi nimesh8310,


Welcome to the forums, there are several thread available on this forum that discusses matching under several criteria, it would be helpful if you search this forum for that.


You can:


Combine various criteria using "&" in a helper column. like this:

Code:
=C2&D2&E2&F2&G2&H2&I2&J2&K2&L2&M2&N2 This combines 12 columns into one


Check for Match with this formula:

=INDEX($A$5:$A$6,MATCH($B$2,$B$5:$B$6,0),0)


If unable to understand, upload a sample file and it can be fixed.


Regards,

Faseeh


You can check for
 
Thanks Faseeh for the warm welcome & quickest response...


I understand your point...problme is solved now...


thanks a tons....


Regards

Nims
 
Back
Top