Hi,
I am looking to create a nested IF statement that allows me to look at multiple columns for duplicates. It is only true if there is a duplicate in each of the columns.
For Example:
First Last Job
Jeff Smith Programmer
Jeff Smith Designer
Jeff Smith Designer
In this scenario, I want a flag checked off when ALL 3 appear more than once. I am able to do this with a single column but with multiple it is a bit difficult. In this situation a person can have a multiple roles but I want to flag it when 3 criteria are all the same.
I have:
=IF(First:First,First2>1, IF(Last:Last,Last2>1, IF(Job:Job,Job2>1,1,0)))
The "2" is simply the designation of the row I am in so that it compares that row to the entire column. I've been coming up with UNPARSEABLE. Any ideas would be helpful.