SUMIF non adjacent cells

edminty84

New Member
Joined
Oct 24, 2021
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi,
I am having trouble using the SUMIF function as my range of cells are not adjacent, but separate and using commas between the cell range is throwing off the calculation.

I am trying to add up scores above 10 as only these count towards a total score.
Cells to be totaled are E6, I6 & M6.

Is there anyway around this please?

Thanks
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi & welcome to MrExcel.
A couple of options
Excel Formula:
=SUM((E6>10)*E6,(I6>10)*I6,(M6>10)*M6)
Excel Formula:
=SUMPRODUCT((E6:M6>10)*(MOD(COLUMN(E6:M6),4)=1)*(E6:M6))
 
Upvote 0
Hi & welcome to MrExcel.
A couple of options
Excel Formula:
=SUM((E6>10)*E6,(I6>10)*I6,(M6>10)*M6)
Excel Formula:
=SUMPRODUCT((E6:M6>10)*(MOD(COLUMN(E6:M6),4)=1)*(E6:M6))
Hi,
Thanks for that. The first one worked great thanks.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,930
Members
449,094
Latest member
teemeren

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