Sriram
Sriram

Reputation: 453

How to count rows of a particular column using formula in Google Sheet

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: enter image description here

Upvotes: 1

Views: 75

Answers (1)

player0
player0

Reputation: 1

try:

=QUERY(A2:C; "select C,count(C) where C is not null group by C")

Upvotes: 1

Related Questions