Well, my question is, What is the formula for matching multiple row cell, if Match TRUE else FALSE then show the different row cell value in next column also sheet have blanks cell too so formula avoid blank cell and result is TRUE.
Please follow the sheet
I am using this formula:
{=AND(EXACT(A2:M2,A2))}
and this formula:
=IF(COUNTIF(A2:M2,A2)=13,"TRUE","FALSE")
But it match with blank cell, I need formula to only for existed matching row cell value then result is TRUE and FALSE. and if False then show that row cell column value in next column
Thanks BN
=IF(COUNTIF(A2:M2,A2)+COUNTIF(B2:M2,"")=13,TRUE,FALSE)
. It counts the number of times the row header appears and then counts the blanks, and if the sum of the two equal 13, you know its an exact match, taking blanks into consideration. – Scott Holtzman