Hi,
I need to do something like this:
COUNTIF(H2:H<current_row_number_-1>, "YES")
meaning that I need to reference a variable limit range inside the COUNTIF
.
I tried:
COUNTIF(H2:COLUMN() & ROW() - 1, "YES")
and similars, but of course it does not work!
Just to be more clear: the result should COUNTIF(H2:H19, "YES")
if I’m using the formula on the cell H20
.
How can I do that correctly?
Thanks