Jan 18 2023 02:34 PM
I'm not sure how to ask this, so google isn't turning up helpful....
Essential, I have a list of items, and I need to identify the sequential number/count next to it...again, not sure how to ask in words, so here is a screen shot of what I have and what I want to happen.
My actual data set is 10K+ rows so need a formula to do this for me.
Jan 18 2023 02:43 PM
Jan 18 2023 02:43 PM
Let's say the data are in cell A2 and down.
If the same values are always together, as in your example, enter the following formula in B2:
=IF(A2=A1, B1+1, 1)
If the values could be intermingled, enter the following formula in B2:
=COUNTIF(A$2:A2, A2)
In both cases, fill down from B2 to the end of the data.