Hi All - I have over 10 options for a column with drop-downs. Most occur more than many times, but there are about 5 or 6 options in the drop-down menu that only occur once or twice. In my summary sheet, I want to lump all those drop-down selections as "Other." But I need a way to tally them. I'm using this to tally the 9 categories and basically thought I would use a NOT formula to exclude each of those 9. Here's what I have:
=COUNTIFS({NAME OF SHEET Range 3}, HAS(@cell, "Technological / IT"))
I'm using that to tally each cell that includes the drop-down selection of Technological / IT and so on and so forth for each of the categories. But what formula would I use to capture EVERYTHING BUT those 9 I'm already counting? How do I do that?
I tried this and it didn't work:
=COUNTIFS({NAME OF SHEET Range 3}, NOT(@cell, "Technological / IT"), NOT(@cell, "Health-Related Emergency"), NOT(@cell, "Fire"), NOT(@cell, "Election"), NOT(@cell, "Severe Weather"), NOT(@cell, "Active Shooter"), NOT(@cell, "Utilities Outage"), NOT(@cell, "All Hazards"), NOT(@cell, "Injuries/Mass Casualties"))
It gave me an incomplete argument set error.
Any thoughts?