SumIf a Date is >

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,341
Office Version
  1. 365
Platform
  1. Windows
I want to sum the value in column Z5:Z15 if the value in column A5:A15 (which are dates) is less than the value I have in Cell A1 which is also a date.

I cant get to where I can get this to work. Can I use a SumIf which dates being greater than or less than?
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Yes. But the dates in column A must be numeric. Confirm with formulas of the form =ISNUMBER(A1).

If all are numeric dates, the following should work:

=SUMIF(A5:A15, "<" & A1, Z5:Z15)
or
=SUMIFS(Z5:Z15, A5:A15, "<" & A1)
 
Last edited:
Upvote 0
=SUMIF(A5:A15,"<"&A1,Z5:Z15)

will sum all of the values in the Z5:Z15 range if the dates in the A5:A15 range is samller than the date in A1.
 
Upvote 0
Thanks, I was putting the ampersand inside the quotes. I appreciate the help.
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,053
Latest member
Mesh

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