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!
Best 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
-
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")))
-
Thank you so much, it worked!!
-
I've looked at this again today and have realised that it wasn't paying attention to any of the "Not" items, so is counting any red risk or issue, whether they're open or not. I've used Summary fields instead and will use the summary reporting to pull everything together in to one dashboard.
Help Article Resources
Categories
Check out the Formula Handbook template!