Add if formula help

game001

New Member
Joined
Mar 26, 2019
Messages
11
Hello,

In column A I have dates in DD/MM/YYYY format. About 100 rows
In column B I have amounts. About 100 rows

In a partircular cell say D1, I want sum of all amounts if the date is on or before 31/03/2019
In a particular cell say D2, I want sum of all amounts if the date is after on or after 01/04/2019.

Could someone help me build the formula?

Thanks alot for your help.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
D1
Code:
=sumif(a1:a100,"<="&date(2019,3,31),b1:b100)

d2
Code:
=sumif(a1:a100,">="& date(2019,4,1),b1:b100)
 
Upvote 0
Sorry but can I ask for another one?

Same criteria but instead of date I want it to pick from a particular Text.
 
Upvote 0

Forum statistics

Threads
1,223,098
Messages
6,170,100
Members
452,301
Latest member
QualityAssurance

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