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 does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
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,214,904
Messages
6,122,169
Members
449,070
Latest member
webster33

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