Countifs, with a cross reference and an or

Hi there,

I'm trying to count how many red risks I have in my RAAIDD log that are not closed or complete. I've written the below, but I can't get it to work. Any advice would be gratefully received, please.

=COUNTIFS({NAME RAAIDD Range 1}, "Risk", {NAME RAAIDD Range 3}, ">=8", {NAME RAAIDD Status}, OR(@cell = "Open", @cell = "In progress", @cell = "On hold", @Cell = "Deferred"))

Thank you!

Tags:

Best Answer

  • Leibel S
    Leibel S ✭✭✭✭✭✭
    Answer ✓

    Try this:

    =COUNTIFS({NAME RAAIDD Range 1}, @cell="Risk", {NAME RAAIDD Range 3}, @cell>=8, {NAME RAAIDD Status}, OR(NOT(@cell = "Closed"), NOT(@cell = "Complete")))

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!