I am trying to format all cells in column D when:
- R=closed
- D=blank
- EDIT: E IS NOT "NOT ON CR"
Here is my custom formula in Google Sheets. Doesn't work. ALL cells in column D get highlighted
=COUNTIFS(R:R, "Closed", D:D, "")
Changed formula to: =COUNTIFS(R:R, "Closed", D:D, "", E:E, "<>NOT ON CR")
I also tried this but it doesn't work. NO cells in column D get highlighted
=COUNTIFS(R:R, "Closed", D:D, "<0")
Changed formula to: =COUNTIFS(R:R, "Closed", D:D, "<0", E:E, "<>NOT ON CR")