Hi,
I have 2-column data record (hourly data in 1 year = 8760 rows), for example:
Column 1 Column 2
1/1/2018 00:00 15
1/1/2018 01:00 20
1/1/2018 02:00 5
.
.
.
31/12/2018 23:00 20
Then, I would like to summarize to monthly value.
What I use is
=sumif(text(A2:A8761,"mmmm"),"January",B2:B8761)
it seems to be not working, I don't understand why?
However, I can use {=sum(if(text(A2:A8761,"mmmm")="January",B2:B8761))} which is in this case working fine.
But I would like to know why sumif function does not work
Thank you for your help
I have 2-column data record (hourly data in 1 year = 8760 rows), for example:
Column 1 Column 2
1/1/2018 00:00 15
1/1/2018 01:00 20
1/1/2018 02:00 5
.
.
.
31/12/2018 23:00 20
Then, I would like to summarize to monthly value.
What I use is
=sumif(text(A2:A8761,"mmmm"),"January",B2:B8761)
it seems to be not working, I don't understand why?
However, I can use {=sum(if(text(A2:A8761,"mmmm")="January",B2:B8761))} which is in this case working fine.
But I would like to know why sumif function does not work
Thank you for your help