Help please

melissay

New Member
Joined
May 11, 2018
Messages
7
=IF(OR($E$10>"1.0",$E$10<"1.0"),0.5,$E$10*0.25)

I have this formula but it works for the greater than 1.0 but if i choose 0.75 in the E10 cell the formula doesn't change to multiply by 0.25

Any help please
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
At the moment the only time E10 will be multiplied by 0.25 is if it equals 1.0
try
=IF($E$10>"1.0",0.5,$E$10*0.25)
 
Upvote 0
Brilliant thanks that works, i also need to join the following 3 formulas together could you help :)

=IF($A$10="E",0,$C$10)
=IF($A$10="E",0,$C$10+($B$10*10%))
=IF($A$10="E",0,$C$10+($B$10*20%))
 
Upvote 0
You'll need to give further info.
What are the conditions for each formula? ie when should the cell =C10, when should it = C10+.1*B10 etc
 
Upvote 0
Is this what you need?
=IF(A2<=40,C2,IF(A2<=80,C2+(B2*0.1),C2+(B2*0.2)))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,549
Messages
6,114,261
Members
448,558
Latest member
aivin

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