SUM/SUMIF with <= Results

Arcaila

New Member
Joined
Nov 23, 2024
Messages
2
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
Screenshot 2024-11-23 114353.png


Column D should either be the sum of Column C multiplied by 272 or the figure in Column B if the sum of Column C multiplied by 272 is greater or equal to Column B. I've tried SUMIF expressions with nothing working. I'm lost. I am a beginner to intermediate level user with Excel. Formulas are challenging beyond sums and averages.

EX: 1,350 x 272 = 367,200. Column D should show the figure in Column B, as the sum is greater than Column B.
EX: 1,150 x 272 = 312,800 (if we change C to 1,150). Column D should show 312,800.

Thank you for any help you can offer.
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Column D should either be the sum of Column C multiplied by 272 or the figure in Column B if the sum of Column C multiplied by 272 is greater or equal to Column B
The result of multiplication is called product, not sum.

Try:
Book1
BCD
6313,9001,350313,900
7313,9001,150312,800
Sheet9
Cell Formulas
RangeFormula
D6:D7D6=MIN(B6,C6*272)
 
Upvote 1
Hi & welcome to MrExcel.
How about
Fluff.xlsm
ABCD
1
23139001350313900
33139001150312800
Data
Cell Formulas
RangeFormula
D2:D3D2=MIN(272*C2,B2)
 
Upvote 1
Solution
That worked perfectly. Didn't even consider the MIN function. Thank you Cubist and Fluff!
 
Upvote 0

Forum statistics

Threads
1,223,993
Messages
6,175,846
Members
452,675
Latest member
duongtruc1610

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