A
A
AHgPeuKa2020-01-24 18:37:10
Google Sheets
AHgPeuKa, 2020-01-24 18:37:10

How to sum total for a specific date in google spreadsheet?

Hi guys, can you please tell me how to sum a column with a specific date?
That is, so that the sum of numbers from column S for 01/24/2020 is displayed in a separate cell
5e2b0ebadb3a1616649350.png

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexander Ivanov, 2020-01-25
@AHgPeuKa

If the dates do not contain time or the time at the beginning of the day, then
=SUMIF(T2:T13;"="&DATE(2020;1;25);S2:S13)
5e2c4ad65bbeb009550805.png
otherwise, you will have to round the dates

=ARRAYFORMULA(SUMIF(DATEVALUE(T2:T13);"="&DATE(2020;1;25);S2:S13))

5e2c4ae0c6ccb112217936.png
You can do without ARRAYFORMULA SUMIFS
=SUMIFS(S2:S13;T2:T13;">="&DATE(2020;1;25);T2:T13;"<"&DATE(2020;1;26))

N
Noir, 2020-01-24
@PolarBearGG

=sumif(S:S;"="&T4

D
dollar, 2020-01-25
@dollar

=ArrayFormula(SUM(IF(DAYS(T:T;0)=DAYS("24.01.2020";0);S:S;0)))

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question