• 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.

Sumproduct Formula

cyliyu

Member
Can sumproduct use to check TEXT if both cell L6 and N6 are text?

Code:
=IF(L6="","",IF(N66="","",IF(SUMPRODUCT((L$6:$L6=L6)*(N$6:$N6=N6))>1,"Repeased","")))
 
The command helps to identify if both the cell numbers (serial no and date code) match, if yes, it shows and display "Repeated".

upload_2018-3-6_13-56-35.png

And I wanted to apply the same formula to Text, e.g. Car 1 and Engine 1. any suggestion?
 

Attachments

  • upload_2018-3-6_13-55-40.png
    upload_2018-3-6_13-55-40.png
    8.2 KB · Views: 4
Hi ,

Instead of posting a screenshot , it would have helped if you had uploaded your workbook.

Try this :

=IF(L6="","",IF(N6="","",IF(SUMPRODUCT((L$6:$L$66=L6)*(N$6:$N$66=N6))>1,"Repeated","")))

where I have used 66 for the last row of data.

Narayan
 
Back
Top