Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm not sure how to enter this formula:
I want to add two ranges and multiply the total by 0.15, but only if the range of another cell is "less than or equal to" 3. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If I interpret you correctly:
=SUM(Range1,Range2)*IF(SUM(Range3)<=3,0.15,1) My assumption was that your wanted the sum of the first two ranges regardless, and the multiplcation factor was what was dependend upon the value of range3. -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "tkw" wrote: I'm not sure how to enter this formula: I want to add two ranges and multiply the total by 0.15, but only if the range of another cell is "less than or equal to" 3. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
=(a1+b1)*if(c1<=3,0.15,1) Multiplying by 1 won't change the result of the addition. tkw wrote: I'm not sure how to enter this formula: I want to add two ranges and multiply the total by 0.15, but only if the range of another cell is "less than or equal to" 3. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SumIf - when I fill down the Range, Criteria & sum range changes | Excel Worksheet Functions | |||
conditional formula: sum a range if text present in another range | Excel Discussion (Misc queries) | |||
formula to sort a range so that it matches the exact rows of a column that is outside that range? | Excel Discussion (Misc queries) | |||
How do I enter formula that adds a range if less than a number or | Excel Worksheet Functions | |||
Trying to enter a range of numbers using >1 and < 5 in a formula | Excel Worksheet Functions |