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

Highlight duplicate rows based on 8 conditions (with one catch)

ole123

New Member
Hi

I have a dataset with 8 column, i.e. 8 conditions, for which I would like to highlight the rows that are duplicate with all 8 conditions.

There is one catch, however, one of the columns should ignore + and -, and thus should consider only if the absolute values are duplicates.

I have attached a sample file, which clearly explains what I am after.

I appreciate any inputs:)

/O
 

Attachments

  • Book1.xlsx
    11.3 KB · Views: 7
Hi:

Use this formula in conditional formatting.

=COUNT(IF(MMULT(($A$7:$A$12=$A7)*($B$7:$B$12=$B7)*($C$7:$C$12=$C7)*($D$7:$D$12=$D7)*(ABS($E$7:$E$12)=ABS($E7))*($F$7:$F$12=$F7)*($G$7:$G$12=$G7)*($H$7:$H$12=$H7),1),$A$7:$A$12))>1

Thanks
 

Attachments

  • Book1.xlsx
    11.5 KB · Views: 10
Back
Top