so 23% would look like this:
B11*1.23
?
Yes, if you divide your desired percentage by 100 then you will get the decimal value to use.
so 5 % = *0.05,
50 % = *0.5,
150 % = *1.5,
500 % = *5.0.
so 23% would look like this:
B11*1.23
?
Just to confuse further, good practice would be to have the bonus percentage in a different cell and reference that cell in your formula. That way you only have to change it in one place.
Just to confuse further, good practice would be to have the bonus percentage in a different cell and reference that cell in your formula. That way you only have to change it in one place.
As well as the threshold.
So the perfect sheet would have the bonus threshold in say B12, and the percentage bonus in B13 (formatted as a percentage) then you could have.
=IF(B11>$B$12,B11+B11*$B$13,"failed to make bonus")
Then you can fill that across, the $ references lock it to the single cells B12 and B13 when you fill across.
Too true, should have mentioned that in the previous post. Though rather than using locked references named cells would make it easier to read.
Please tell me this is homework and not actually something for work
Explain? I might learn something from this thread also![]()
Make a single cell into a named ranged (ctrl + f3) and then reference that cell in the formula. You can then move the cell around all you like, as much as you retain the cell name.
Hah! My first thought. I'd worry for his business.
Using your above example name cell B12 Threshold and name cell B13 Bonus and then your formula would be:
=IF(B11>Threshold,B11+B11*Bonus,"failed to make bonus")
I believe it's more commonly used for groups of cells, as opposed to single cells. That's in my experience though!
Yeah, but the programmer in me likes my if statements tidy!
Also you don't need to use Ctrl+F3, you can just type the name in the little box in the top left that normally has the cell reference.
OK GUYS I THINK I HAVE IT !!!
My new formula is based on 10% bonus on top of wages
of £3,000 or more.
I used an absolute cell reference for the 10% (so i can just change the value
if i want to and all the other cells should update with new %)
img
Is my cell formula correct?