Reputation: 105
I want to have a cell that checks a specific column for dates that are greater than today but for some reason it isnt counting.
Here is what I have:
=COUNTIF('ORDER DATE'!H3:H990;"<TODAY()")
Upvotes: 1
Views: 922
Reputation: 5325
Try:
=COUNTIF('ORDER DATE'!H3:H990; ">" & TODAY())
Also notice that for greater than today you should use another operator: >
.
Upvotes: 1