Home > Enterprise >  How can I count how many times a unique row appeared in my google sheet?
How can I count how many times a unique row appeared in my google sheet?

Time:03-10

Is there a way to count how many times a unique row appeared in my sheets?

Here's a sample link:

https://docs.google.com/spreadsheets/d/1z036Q4RtfYPyO0JdcJ9Fcb-adundFdzijNG_1ehsT-4/edit?usp=sharing

I need to count how many times "Apple | 10 | 9 | 1" and "Orange | 12 | 10 | 2" appeared.

I tried using this:

={UNIQUE(A2:D8, false), ARRAYFORMULA(COUNTIF(A2:D8, UNIQUE(A2:D8)))}

However, it counts individual unique cells, not the whole row.

CodePudding user response:

See if this helps

=QUERY(Sheet1!A1:D, "Select A, B, C, D, count(D) where A <>'' group by A, B, C, D label count(D) 'Count'", 1)
  • Related