solve this EXCEL formula for me before i go CRAZY please

Soldato
Joined
11 Feb 2004
Posts
3,343
Location
TheWirral


i want to give the following people a bonus of 10% on top
of their wages if they earn over £3,000 a week.

can someone edit this formula please:

=IF(B1>3000,+10%,"add","no"

I've given up lol's.
 
In case you don't understand, if you multiply something by 1.1 it is the equivalent of 110% of the original value. So 10 % on top of their original wage...
 
Use the fx button next to the formula bar at the top, that gives you a little wizard which will help you with using new functions. As a breakdown of the IF statement it works as follows:

=IF(logic test, value if true, value if false)

So it tests a logical function and then returns a value of your choice depending on whether the function is true or not.
 
Back
Top Bottom