SUMPRODUCT with one additional criterion

virtuosok

Board Regular
Joined
Sep 2, 2020
Messages
209
Office Version
  1. 365
Platform
  1. Windows
Hi,
I have the following working formula:
Excel Formula:
=SUMPRODUCT((--(IFERROR(MONTH('IWR3'!$N$2:$N$1000),0)=8)),--(IFERROR(YEAR('IWR3'!$N$2:$N$1000),0)=2021))
How can I add another condition? Namely, making sure that formula only counts instances with particular word in column J?
I.e. 'IWR3'!$J$2:$J$1000="Word"
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
How about:
Excel Formula:
=SUMPRODUCT((--(IFERROR(MONTH('IWR3'!$N$2:$N$1000),0)=8)),--(IFERROR(YEAR('IWR3'!$N$2:$N$1000),0)=2021),--(IFERROR('IWR3'!$J$2:$J$1000,0)="Word"))
 
Upvote 0
Solution
Thanks! This works!
I must have missed one extra bracket!
 
Upvote 0
You're Welcome & Thanks for Follow-up.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,684
Members
448,977
Latest member
dbonilla0331

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