I would like to countif(s) a range is greater than another range plus 3.
Here is what I currently have that isn't working (only the 3rd criteria isn't working):
=COUNTIFS($F:$F, ">" &G:G,F:F, ">1",F:F, "<" &G:G+3)
Isolating the issue to a single row works, a la:
=COUNTIF(F12, "<" &G12+3)
I am trying to get the countifs to check if an F cell in a given row is less than a G cell +3 for the same row.