Detecting Duplicates in a Column

I know there is a recent post that speaks to detecting duplicates in two sheets. I'm not quite understanding; there seems to be a disconnect for me, forgive me for asking the same question again. :)
Sheet A has the TNumber of students granted funds - {Granted}
Sheet B has the original student request for funds. {SpringTerm}
I want to create a column where a checkmark on {SpringTerm) if the TNumber appears on the {Granted} sheet and/or if it appears more than once on the {SpringTerm} sheet.
Ultimately, we don't want to pay them twice {granted} and we don't want to process a duplicate request {SpringTerm}
In the end, I want to be able to automate sending a report that eliminates duplicates.
Thank you,
Donna
{SpringTerm} Sheet:
Answers
-
First we will check the other sheet...
=COUNTIFS({Granted}, TNumber@row)
Next we count the working sheet...
=COUNTIFS(TNumber:TNumber, TNumber@row)
If we add those together and they equal more than 1, then there is a duplicate and we check the box.
=IF(COUNTIFS({Granted}, TNumber@row) + COUNTIFS(TNumber:TNumber, TNumber@row) > 1, 1)
-
Thank you! Your explanation helped me understand the concept. Very much appreciated.
Help Article Resources
Categories
Check out the Formula Handbook template!