If Function

Charlene Durand

Board Regular
Joined
Sep 19, 2015
Messages
98
Office Version
  1. 365
Platform
  1. Windows
I am trying to do diffrent amounts for PAYE scales / percentages please help below is my formula


=IF($AB9<6392.31,0,($AB9-6392.31)*0.18),IF($AB9<15838.53,0,($AB9-15838.53)*0.26)
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
The strucutre of how you are nesting the IF statements is incorrect.
See here for details and examples: IF function – nested formulas and avoiding pitfalls

If you need help figuring it out, please explain how it should work, in plain English (it can be difficult to figure out how exactly you want it to work from a faulty formula).
 
Upvote 0
I have two diffrent PAYE thresholds, the one is if my Gross is from 6392.31 then my PAYE has to be worked out on the deduction of 18%. the other is when i earn more than 15838.54 then my PAYE has to be worked out on the 26% deduction

Hope this makes sence
 
Upvote 0
Try this:
=(MAX(AB9-6392.31,0)*0.18)+(MAX(AB9-15838.54,0)*0.08)
 
Upvote 0

Forum statistics

Threads
1,214,598
Messages
6,120,441
Members
448,966
Latest member
DannyC96

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