Hi,
I am horrible at Excel and formulas 😭. I have two formulas that work correctly on their own:
=COUNTIF(Event:Event, CONTAINS("Prime", @cell))
=COUNTIF(Primary:Primary, <>"")
I'm trying to combine these two formulas to get a count if column Primary is not blank AND if a cell in column Event CONTAINS the word prime. The word prime can be alone, or part of a string of words.
I've tried a couple of options:
=COUNTIFS(Primary:Primary, <>"", Event:Event, CONTAINS("Prime", @cell)) - this gets a result of zero
=COUNTIFS(Primary:Primary, <>"", Event:Event, FIND("Prime", @cell)) -this gets #invalid data type
Any assistance would be much appreciated!
John