Formula Help

Wilcock1

New Member
Joined
Dec 11, 2014
Messages
29
Hi,

Please can you help with resolving a formula query that I have.

I currently have the following formula =SUMIF(BF:BF, $C$3)

R:R has various values in.

BF:BF is a column with dates in.

C3 is 01/01/19 formatted as Jan 19.

I can get the total to work if the date in BF says 01/01/19 as it matches C3 but the result that I am trying to obtain is sum anything in column R if column BF has a Jan 19 date (i.e. 02/01/19, 05/01/19, 12/01/19, etc).

Any assistance would be greatly appreciated!!

Regards

Andrew
 

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.
How about
=SUMIFS(R:R,BF:BF,">="&C3,BF:BF,"<="&EOMONTH(C3,0))
 
Upvote 0
Maybe:

=SUMPRODUCT(R3:R100,--(MONTH(BF3:BF100)=MONTH(C3)),--(DAY(BF3:BF100)=DAY(C3)))

I believe in your examples, you have the date formatted as YY/MM/DD.
 
Upvote 0
Maybe:

=SUMPRODUCT(R3:R100,--(MONTH(BF3:BF100)=MONTH(C3)),--(DAY(BF3:BF100)=DAY(C3)))

I believe in your examples, you have the date formatted as YY/MM/DD.

Hi there, sorry for the delay in my reply but thanks for your resolution that's great!!
Many thanks for your help.
 
Upvote 0

Forum statistics

Threads
1,214,632
Messages
6,120,652
Members
448,975
Latest member
sweeberry

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