I am trying to return a 1 for the first instance of each unique value in a column, and return a 0 for each repeating value after the first unique instance.
In Excel I've used the below formula but on a larger sheet it becomes unstable.
=IF(COUNTIF($A$2:A2,A2)=1,1,0)
ID Unique
ABC1 1
ABC1 0
ABC1 0
ABC2 1
ABC3 1
ABC3 0
ABC4 1