I am trying to count how many times a name appears in a column on a rolling basis. As the names get added, I want it to count upwards.
Here's an example with 2 names:
Name | Count |
|---|
Brian | 1 |
Michael | 1 |
Brian | 2 |
Brian | 3 |
Michael | 2 |
Brian | 4 |
Brian | 5 |
Brian | 6 |
Michael | 3 |
My Current Formula which just counts the total # of times the name appears:
=COUNTIF([Name]:[Name], [Name]@row)