Quick Formula Hlep

sleepymum

New Member
Joined
Jan 10, 2011
Messages
10
Hi,

Can anyone please help me to write this formula:

If A1 is greater than or equal to 1 multiple by 5%
If A1 is less than or equal to 10 multiply by 10%


Thanks in advance!
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
=if(A1<=10,A1*1.1,if(A1>=1,A1*1.05,A1))

This will give you an increase of the required percentage. If you just want 5% or 10% of the value then change to 0.1 and 0.05.
It will also only give one or the other. You didn't specify what to do if neither condition is met so it will just display the contents of A1.
 
Upvote 0
What A1 is equal to 5? Do both?

What if it's less than 1 or greater than 10? Do neither?
 
Upvote 0
Sorry this should make it clearer!!!
If A1 is greater than 356 multiple by 10.75%
If A1 is less than or equal to 356 multiply by 8.55%


Again thanks for help!
 
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,628
Members
452,933
Latest member
patv

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