I have data in col A (item) I need to know if it is repeat or new.
the thing is, all item starts with 302 are new (N) item number, but if this item is repeating(starts with 302), I have to tag it as Repeat (R).
i have the formula to find if it is repeating.
=IF(COUNTIF($A$1:A1,A1)=1,"N","R")
but I also need to combine the formula to know if it starts with "302"
=IF(LEFT(A1,3)="302","N","R")
in this image, item starts with 11, but it says N, i need to create a formula which tells me that if item begins with 302 this is new, but if it is duplicated it should be tag as repeat. while all item that dont starts with 302 should be tagged as "R".
SORRY FOR MY ENGLISH.
hope someone can understand it and help me.
the thing is, all item starts with 302 are new (N) item number, but if this item is repeating(starts with 302), I have to tag it as Repeat (R).
i have the formula to find if it is repeating.
=IF(COUNTIF($A$1:A1,A1)=1,"N","R")
but I also need to combine the formula to know if it starts with "302"
=IF(LEFT(A1,3)="302","N","R")
in this image, item starts with 11, but it says N, i need to create a formula which tells me that if item begins with 302 this is new, but if it is duplicated it should be tag as repeat. while all item that dont starts with 302 should be tagged as "R".
SORRY FOR MY ENGLISH.
hope someone can understand it and help me.