How to use Query functions to count values from rows?

Viewed 30
1 Answers

try:

=INDEX(QUERY(FLATTEN(IF(B2:F10="",,A2:A10)), 
 "select Col1,count(Col1) where Col1 is not null group by Col1 label count(Col1)''"))

enter image description here

Related