Add only if between dates

Nanaia

Active Member
Joined
Jan 11, 2018
Messages
304
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
I can't determine whether to use COUNTIF, COUNTIFS, SUMIF, or SUMIFS in this situation. I've tried all four and none do what I want so I'm seeking guidance here.

I'm trying to total items in a column only if the date in the adjacent column is between two dates. Column K is DATE (every day of the year) and I want to add the numbers in column L if the date in column K is between two dates. How do I do this?
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
How do I do this?

sounds like what you're trying to do can not be (easily) done in a formula.
loop through each cell in k
If K is between the dates x and y
then add that row's L to the sum
?

if that more or less is the solution that would be VBA
 
Last edited:
Upvote 0
in which case i will need relevant info like:
- sheet names
- if the dates are located in cells or you want to type them in
- any other info you think is relevant
 
Upvote 0
Maybe something like
=SUMIFS(L:L,K:K,">="&D1,K:K,"<="&D2)
where D1 & D2 hold the two dates
 
Upvote 0

Forum statistics

Threads
1,214,848
Messages
6,121,917
Members
449,055
Latest member
KB13

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