I think I need a sumif formula.....??

SM mechanic

New Member
Joined
Sep 12, 2017
Messages
33
Office Version
  1. 2007
Platform
  1. Windows
I need a formula where I can input numbers into 3 cells. and have the formula multiply the first cell by the second cell and add the third cell. With the variable in the second cell being if that number is equal to or less than 80 the first number gets multiplied by 1, and if it is greater than 80 it is multiplied by 1.1. for example
A1 1500
A2 78
A3 1000

sum would be 2500

A1 1500
A2 81
A3 1000

Sum would be 2650

I hope this makes sense.

Thank you for any help with this
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
=if(A2<=80,((A1*1)+A3),((A1*1.1)+A3))

Book4
ABCD
11500
278
31000
4
5sum would be 25002500
6
71500
881
91000
10
11Sum would be 26502650
Sheet1
Cell Formulas
RangeFormula
D5,D11D5=IF(A2<=80,((A1*1)+A3),((A1*1.1)+A3))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

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