Sumproduct with an IF statement

JTL9161

Well-known Member
Joined
Aug 29, 2012
Messages
567
Office Version
  1. 365
Platform
  1. Windows
I have this formula below. I need to add and if statement to it that if the total is less than 4 (<4) then just put an 0 but if 4 or greater (>4) then show the number.

=SUMPRODUCT(COUNTIF(R2:U2,B$192:Q$192))

Thank You,
James
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try this

=IF(SUMPRODUCT(COUNTIF(R2:U2,B$192:Q$192))<4,0,SUMPRODUCT(COUNTIF(R2:U2,B$192:Q$192)))

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
or

=SUMPRODUCT(COUNTIF(R2:U2,B$192:Q$192))*(SUMPRODUCT(COUNTIF(R2:U2,B$192:Q$192))>=4)
 
Last edited:
Upvote 0
Sorry, when there is a 4 or higher it gives a "0".
 
Upvote 0
Sorry, I read that wrong. Please see edited formula above.


Excel 2010
BCDEFGHIJKLMNOPQRSTU
2441234
1924134
Sheet1
Cell Formulas
RangeFormula
J2=IF(SUMPRODUCT(COUNTIF(R2:U2,B$192:Q$192))<4,0,SUMPRODUCT(COUNTIF(R2:U2,B$192:Q$192)))
K2=SUMPRODUCT(COUNTIF(R2:U2,B$192:Q$192))*(SUMPRODUCT(COUNTIF(R2:U2,B$192:Q$192))>=4)
 
Last edited:
Upvote 0
My bad. All the numbers were 4 so they were not GREATER than 4. I changed the end to >=4 and it works.

Thanks
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,431
Members
448,961
Latest member
nzskater

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