I have a data set that looks like this
Stock Number Date completed Username Team
694009 01/10/2019 4 RS PRO
1368299 01/10/2019 18 II&T
1774499 01/10/2019 4 RS PRO
1774504 01/10/2019 4 RS PRO
1774505
I want to add up as it goes down the column, so we can see the 'Username' column. How can I code so every time it sees the same number add one? We can see Username '4' there. I want to see:
Username Count
4 1
4 2
4 3
4 4
4 5
4 6
thanks