razstec
razstec

Reputation: 93

Sum number of record between dates Excel

I need to count the number of record between two dates.

I've tried this but it doesn't work.

Column A is a list of dates

E3 start date
E4 end date

=sumif(A:A;">="&E3;"<="&E4)

Thanks

Upvotes: 0

Views: 31

Answers (1)

BrakNicku
BrakNicku

Reputation: 5990

COUNTIFS should do the trick:

=COUNTIFS(A:A;">="&E3;A:A;"<="&E4)

EDIT: corrected an obvious mistake. Thanks for comments. Change ; to , depending on your regional settings.

Upvotes: 2

Related Questions