I am trying to write a formula that will count the number of occurrences for specific text on specific dates. I am using two formuals to get information now and I want to aggregate better.
- Formula to collect count of text: =COUNTIF({Tally Range 1}, CONTAINS(Issue@row, @cell))
- Drop down multi select whichis why I have to use the contains function.
- Formula to collect calls per day: =COUNTIF({Tally Range 2}, [Date Received]@row)
I combined the two formulas so I could get a count of how many of the specific issues we seen per day. However, I keep getting an “#Incorect Argument Set" Error. I have tried it multiple ways and keep getting the error. Below is the formula I am using. Any assistance is greatly appreciated.
My formula is: =COUNTIFS({Tally Range 1}, CONTAINS(Issue@row, @cell), {Tally Range 2}, [Date Received]@row).