Hi this is my first post here, sorry for my bad english.
I'd like to see if all the age of one value are the same. If they is no duplicate or if the values are the same, then it's ok to me. In the example below, when it's "NOT OK", i'd like to copy my row, then paste it in another sheet (I can deal with this part ^^)
ID Age My Value
-------------------
1 15 NOT OK
2 50 OK
2 50 OK
3 35 OK
1 16 NOT OK
1 15 NOT OK
Thanks in advance
You can compare a
COUNTIF
that simply counts based on the ID to aCOUNTIFS
which counts based on ID and Age:So that if the total number of entries for each ID matches the number of entries with the same age, it will show "OK".