somliving

New Member
Joined
Aug 28, 2017
Messages
6
Hello Everyone.

I have a spreadsheet that looks similar to below

NameDateNumber123
Of PropertyAcquiredof Units352352525
River City01/01/2017252
Place Landing03/06/2017200
Village Green01/01/2017100

<tbody>
</tbody>


I have a formula in D3-f3 to total the number of unit during that month and I am getting an error. Here is the formula:

=SUMIF(MONTH($B$3:$B$B51),"<="&D1,$C$3:$C$51)

Error=There's a problem with this formula. Not trying to type a formula
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Unfortunately you can not nest the month function inside the range of the sumif.

you would need to switch over to sumproduct....

just as a side note, i'm assuming your dates are English and not US

Unknown
ABCDEFGHI
1NameDateNumber123456
2Of PropertyAcquiredof Units3520000200
3River City1/1/2017252
4Place Landing6/3/2017200
5Village Green1/1/2017100

<tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
D2=SUMPRODUCT(--(MONTH($B$3:$B$5)=D$1),$C$3:$C$5)

<tbody>
</tbody>

<tbody>
</tbody>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,792
Members
449,048
Latest member
greyangel23

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