47redlands
Programmer
I am carrying out a Microsoft Excel exercise. It is for National Insurance.
The current national insurance rate ranges in the following manner; If you earn more than £110 a week and up to £844 a week, you pay 11 per cent of the amount you earn between £110 and £844. If you earn more than £844 a week, you also pay an extra 1 per cent of all your earnings over £844.
The formula for excel is calculated in two stages
IF(C6>110, IF(C6<844, "yes", "no"))
So if it returns no
So if the weekly pay is £576.9231 it will return with yes.
I am then using this formula:
=IF(I6="yes",C6*0.11,C6*0.11+(C6-844)*0.01)
What is wrong with this formula as it is not working as I want it to.
The current national insurance rate ranges in the following manner; If you earn more than £110 a week and up to £844 a week, you pay 11 per cent of the amount you earn between £110 and £844. If you earn more than £844 a week, you also pay an extra 1 per cent of all your earnings over £844.
The formula for excel is calculated in two stages
IF(C6>110, IF(C6<844, "yes", "no"))
So if it returns no
So if the weekly pay is £576.9231 it will return with yes.
I am then using this formula:
=IF(I6="yes",C6*0.11,C6*0.11+(C6-844)*0.01)
What is wrong with this formula as it is not working as I want it to.