A
A
arr0w2020-12-29 12:40:40
Google Sheets
arr0w, 2020-12-29 12:40:40

How to calculate the number of applications per month?

There is a table:
https://docs.google.com/spreadsheets/d/1XtZMDJ5DUc...
How to count the number of applications made in November and December?
I tried to use COUNTIF, but you need to specify the exact value of the cell there.
Please tell me how to solve this problem?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
G
Grigory Boev, 2020-12-29
@arr0w

=счётз(filter( a:a ; c:c >= ссылка_на_дату_от ; c:c < ссылка_на_дату_до ))

or so if hunting hardcode
=СЧЁТЗ(filter(C2:C;C2:C>=ДАТА(2020;11;1);C2:C<ДАТА(2020;12;1)))

E
Elvis, 2020-12-29
@Dr_Elvis

If the idea is on the move, then in countif do not pass the entire cell, but 4 and 5 characters, this will be a month.
In general, for such cases, they make a pivot table. Everything you need is there

V
Vasily Bannikov, 2020-12-29
@vabka

The criterion can be a number, expression, cell reference, text, or formula;

Can do
=COUNTIF(..., "??.11.20") + COUNTIF(...,"??.12.20")

Z
zork1991, 2020-12-29
@zork1991

=ArrayFormula(SUMIF(MONTH(A:A);12;B:B))
Where A:A you have the date B:B of the value to sum up, month 12(December). If necessary, for the current month, you can replace the month number like so Month(Today()).

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question