I created a form to get feedback from 6 different business units regarding 48 different applications. The participants select their business unit name from a single select dropdown. They then rank each application as “Not Used By Myself or My Team”, “I'm Not Sure”, “Not Important”, “A Little Important”, “Somewhat Important”, “Quite Important”, “Very Important”, again single select dropdown.
The sheet the form feeds into looks like this:
I would like to summarize how often each business unit selects something based on importance.
I am currently summing up the “importance“ answers by application (48 columns) but I need a high-level roll-up based on business units. With my table looking like this.
I’ve tried several variations of formulas but they are either coming back unparsable or incorrect argument set. The latest one I tried is the following and the error is unparsable.
=COUNTIFS({BusinessUnit}, "Business Unit 1", {AllSystemColumns}, HAS(@row, "Very Important"))
The {AllSystemColumns} is a name range of the 48 columns to check (Example from above would be App 1, App 2, App 3, App 4, App 5).
I’ve tried @cell or @row (since it’s looking across the rows) but neither works.
Any help would be greatly appreciated.