Eloise T
Active Member
I use the following formula which looks at the array in Column A and checks for duplicate Work Order number entries. (Usually there is only one duplicate, but occasionally there can be 3 or on rare occasion, 4 duplicates.)
=IF(A3<>"",IF((COUNTIF($A$3:$A$15000,TRIM(A3))>1),"Duplicate",""),"--")
Returns "--" if no data in Column A,
"" if no duplicate found in Column A,
and "Duplicate" if a work order appears more than once.
Currently, the formula works fine; however, the array is over 10,000 rows long and it gets tedious to scroll through to find where the duplicate row(s) are when the formula flags a match. Can the formula be reengineered to also indicate, e.g. "Duplicate found in row ",nnnn?
=IF(A3<>"",IF((COUNTIF($A$3:$A$15000,TRIM(A3))>1),"Duplicate",""),"--")
Returns "--" if no data in Column A,
"" if no duplicate found in Column A,
and "Duplicate" if a work order appears more than once.
Currently, the formula works fine; however, the array is over 10,000 rows long and it gets tedious to scroll through to find where the duplicate row(s) are when the formula flags a match. Can the formula be reengineered to also indicate, e.g. "Duplicate found in row ",nnnn?