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

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
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
Can you give a detailed example of what you mean?
 
Upvote 0

Forum statistics

Threads
1,215,446
Messages
6,124,896
Members
449,194
Latest member
JayEggleton

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