assistance using =SumProduct with a date range criteria

Val_Gal

New Member
Joined
Jun 26, 2017
Messages
11
Hey Guys!

I'm currently using Sum Product to add up items on a table with a few criteria.
For now it is summing '<=Today()'

=SUMPRODUCT(--(TRANSACTIONS_ALL[date]<=TODAY()),--(TRANSACTIONS_ALL[TYPE]="PENDING CHECK"),TRANSACTIONS_ALL[AMOUT DUE])

Please assist so that instead of '<=Today()', it is searching the same column for the date range of 'this month'.
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
(month(TRANSACTIONS_ALL[date])=month(TODAY()))
 
Last edited:
Upvote 0
Please assist so that instead of '<=Today()', it is searching the same column for the date range of 'this month'.

Hi, here is a SUMIFS() alternative which also takes into account the current year.

Code:
=SUMIFS(TRANSACTIONS_ALL[AMOUNT DUE],TRANSACTIONS_ALL[Date],">="&EOMONTH(TODAY(),-1)+1,TRANSACTIONS_ALL[Date],"<"&EOMONTH(TODAY(),0)+1,TRANSACTIONS_ALL[TYPE],"PENDING CHECK")
 
Upvote 0

Forum statistics

Threads
1,216,759
Messages
6,132,550
Members
449,735
Latest member
Gary_M

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