Google-sheets – Google Sheets Sumif formula error when criterion is date range

google sheets

I am trying to sum data from the Jones tab if its between the dates in C1 & B10. But it returns an formula parse error. I assume I am using some syntax incorrectly, any suggestions?

=sumifs(Jones!D20:25,Jones!B20:B25,"<="C1,Jones!B20:B25,">="B10)

https://docs.google.com/spreadsheets/d/1tjRIAjh9jUkfNraRKOPqi4_rjH4ulVxWf0JzwotJy1M/edit?usp=sharing

Best Answer

Please try this:

=sumifs(Jones!D20:D25,Jones!B20:B25,"=<C1",Jones!B20:B25,">=B10")

(too much caffeine, not enough sleep)