Reputation: 453
I have a google sheet that contains case number column and MC column. How to count the row of case number based on the MC Column and automatically sum up in the number of cases column. This is the screenshot of my data:
Upvotes: 1
Views: 75
Reputation: 1
try:
=QUERY(A2:C; "select C,count(C) where C is not null group by C")
Upvotes: 1