0
votes

I am trying to count/sum the number of days for each option in the "Who" column.

In this example the results would be: ALL: 1 BOTH: 3 TOM: 2

enter image description here

Thinking it would require filtering column B based on column D?

Any ideas?

1

1 Answers

0
votes

Try

=QUERY(B:D,"select D,SUM(B) where D <>'' group by D")