I have tried several different ways to do what I thought should be a simple calculation. The purpose is to add Hours from one column where the Priority in a second column is either 1, 2, or 3.
For perspective there are 300+ rows in the sheet and it grows daily. There are 8 possible priority settings, one is text. I have tried using a helper column and converting the text to 0. The Priority column is also dropdown, which I thought might also be causing a problem.
=SUMIFS([ETC Marmon]:[ETC Marmon], Priority:Priority, 1, Priority:Priority, 2, Priority:Priority, 3)
The above produces 0
=SUMIFS([ETC Marmon]:[ETC Marmon], Priority1:Priority1, OR(@cell = "1", @cell = "2", @cell "3"))
The above produces and #Incorrect Argument Set error
I have also tried writing the first one with "" around the numbers and using the helper column.
I have tried writing individual SUMIFs inside of a SUM statement.
What am I missing? Can anyone see what I can't see at this point?