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

Help to Identify an exception

Hi

I have an excel outpout showing who transfered data.
There is an owner to the task to transfer and there are also sub task.
I need to identify cases where the MASTERTASK (column B) is repeating itself (can be many times) & the owner column (I) have different names.
In column J to add word exception.

Example attached.

thanks

David.
 

Attachments

  • dv2- error.xlsx
    13.3 KB · Views: 7
if you have FILTER ( ) available, you may try:
Code:
=IF(COUNTA(FILTER($I$2:$I$11,($B$2:$B$11<>"")*($B$2:$B$11=B2),0))>1,"Exception","")
 
Back
Top