tiredofit

Well-known Member
Joined
Apr 11, 2013
Messages
1,834
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Assume I have a column of data:

Code:
100
200
300
400
500

How can I create a SUMIF to sum, such that if each value divided by 10 is less than 5?

Something like:

Code:
=SUMIF((A:A)/10,"<5",A:A)

Thanks
 
Last edited:

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
How can I create a SUMIF to sum, such that if each value divided by 10 is less than 5?

Hi, isn't that the same as saying they are less than 50?

=SUMIFS(A:A,A:A,"<50")
 
Upvote 0
Yes it is.

However, if my formulae was more complicated, eg if the first condition is not to be divided by 10 but by column B (assuming I have data in column B), how would I approach that?

eg:

Code:
100     1
200     5
300     49
400     12
500     5
 
Last edited:
Upvote 0
You'd have to use SUMPRODUCT, not SUMIF.
 
Upvote 0

Forum statistics

Threads
1,215,438
Messages
6,124,873
Members
449,192
Latest member
MoonDancer

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