Minimum Wage Rise

dj120374

New Member
Joined
Feb 12, 2007
Messages
11
I am trying to create a formula to allow me to show new increases to the minimum wage in the UK.

So someone under the age of 18 will earn £6.95 just now but after 1st April will earn £7.05
and someone over the age of 18 will earn £7.20 just now but after 1st April will earn £7.50

Now I can change these using this formula:

=IF((AND(E2=7.2, E2>=6.95)), "7.5", "7.05")

but I also have staff that earn above the minimum wage and theirs will remain the same, but I can't get the formula to work for that.

Any help would be much appreciated.
 
I suspect you DON'T actually want to test that

E2=7.2
AND
E2>= 6.95

Think about it, if E2 = 7.2, it HAS to be >= 6.95.

What do you REALLY want to do ?

Perhaps you want to say
IF AGE < 18 AND current wage is < 7.05, make it 7.05, otherwise leave it unchanged.

In which case something like this

=IF(AGE<18,MAX(E2,7.05),MAX(E2,7.5))

Replace AGE with the cell that contains the AGE.
Assumes E2 contains current wage.
Adapt as appropriate.
 
Upvote 0

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