SUMIFS between two dates not working :S

rexhvn

New Member
Joined
Jan 7, 2016
Messages
27
Hi all,

I am hoping for some assistance, please. I think i'm losing my mind.

I'm working on a spreadsheet (forecast) where I am trying to calculate the amounts for each value between two dates from a drop down.

In this example, I want to return all the values between 01/01/2024 & 10/01/2024 (Australia Date Format)

Under forecast which shows a value of $408k in the image:
DATA!C:C = Date Range (Date + Expected Delay = Date)
DATA!B:B = Values
=SUMIFS(Data!C:C,Data!B:B,">=01/01/2024",Data!B:B,"<=10/01/2024")

The formula seems to work ok on this test, however, for some reason, even this formula isn't picking up all my values in my real spreadsheet.

For example, on my real spreadsheet using the example same formula (just with dates manually entered) it returns only 303 out of the 335 from the list where the date is equal to or greater than 01/01/2024 and equal to or lower than 10/01/2024. Any thoughts here?

I'm also having issues trying to adjust the formula to read from a cell drop down that contains the start and end date, as a opposed to manually writing them in the formula.
FROM DATE = I7
TO DATE = L7
=SUMIFS(Data!C:C,Data!B:B,">=I7",Data!B:B,"<=L7") - It just returns a zero value.

Any assistance would be appreciated.



1705717053531.png

1705717421032.png
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
it returns only 303 out of the 335
Do the dates in col B also include time?
If so try
Excel Formula:
=SUMIFS(Data!C:C,Data!B:B,">="&I7,Data!B:B,"<"&L7+1)
 
Upvote 0
Do the dates in col B also include time?
If so try
Excel Formula:
=SUMIFS(Data!C:C,Data!B:B,">="&I7,Data!B:B,"<"&L7+1)
Thank you Fluff, you're spot on :). The date column included the time by default, adding +1 helped fix it :).

Appreciate your help!
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0
Glad we could help & thanks for the feedback.
Hi Fluff,

Unfortunately, i'm back to square one for some reason.

I've updated my data set, but it doesn't seem to be calculating correctly.

My formula:
=IFERROR(SUMIFS(Receipts!AG:AG,Receipts!V:V,">="&I26,Receipts!V:V,"<="&M26+1),"")

The 'actual' is pulling $124k, where the total sum between 22nd Jan and 26th Jan is actually $345k.

Receipts AG:AG = values from sumif for currency exchange.
Receipts V:V = Short dates no time (even if remove +1 from the formal, the data isn't changing).

Any idea where i'm going wrong here?

1706495372163.png
 
Upvote 0
It maybe that some of the dates are text rather than proper dates.
 
Upvote 0
It maybe that some of the dates are text rather than proper dates.
I'm a bit perplexed at the moment, sorry Fluff.

I'm using the same format from my other formula which is working just fine. But for some reason, this isnt working.

Interestingly enough, when I filter, the dates appear different.
1706590728000.png


1706590464823.png
 
Upvote 0
Glad it's sorted & thanks for letting us know.
 
Upvote 0

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top