I currently have a formula which counts the number of rows that meet a particular condition in my spreadsheet.
=COUNTIFS(E:E,"<>",F:F,">="&TODAY())
As there are numbers within these rows, how do I count the value in them instead?
I've tried
=SUMIFS(E:E,"<>",F:F,">="&TODAY())
but Excel tells me I have not entered enough arguments, what am I missing?