I'm trying to count the number of activities each organization has done in my dataset. Right now, each row represents a single organization's list of activities.
The following formula accurately finds the number of activities per organization: =IF(COUNTA(A1:H1)=5,"yes")
However, I now need to group organizations by amount of activities (ex: how many organizations work on 2 activities, 5 activities, 7 activities...?)
I haven't figured out a way to COUNTA across a row first and then count those responses down a column. Something like this... =COUNTIF(IF(COUNTA(A1:E1)=5,"yes")="yes") from A1:E100
Any ideas are appreciated. And let me know if this doesn't make sense... my head is spinning right now from thinking too much about this!