IF Formula help.

surajdaichung

New Member
Joined
Mar 16, 2022
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hello Everyone,

this is first time for me I am using the IF formula and i cant seem to get it right.

here is my query:

PAYE Tax should use a function to test the Gross Income and calculate the amount of PAYE Tax. (If Gross Income is less than $65,000 – calculate 0% tax, if Gross Income is less than $100,000 – calculate 5% tax, else calculate 10% tax)

Month Deductions
Applicant IDApplicant First NameApplicant Last NameGross IncomePAYEE TAXHealth SurchargeUnion DuesTOTAL DEDUCTIONS

Any help would be greatly appreciated. Also I need to do the IF formula for the TOTAL DEDUCTIONS.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Welcome to the Board!

Is this a graduated tax?
So, if your Gross Income is between $65,000 and $100,000 (say it is $80,000), is the 5% tax applied on the WHOLE amount ($80,000), or just on the amount over $65,000 (which would be $15,000)?
 
Upvote 0
Welcome to the Board!

Is this a graduated tax?
So, if your Gross Income is between $65,000 and $100,000 (say it is $80,000), is the 5% tax applied on the WHOLE amount ($80,000), or just on the amount over $65,000 (which would be $15,000)?
Hello Mr. Joe4,

Below 65,000 would be zero percent i.e no tax. Over 65,000 but less than 100,000 is % on the difference between 65,000 and 100,000 which is 35,000 x 5%. Over 100,000 will attract 10% following the same rule i.e 105,000-65,000 x 10%.
 
Upvote 0
Below 65,000 would be zero percent i.e no tax. Over 65,000 but less than 100,000 is % on the difference between 65,000 and 100,000 which is 35,000 x 5%. Over 100,000 will attract 10% following the same rule i.e 105,000-65,000 x 10%.
Hmmm... You seem to have two conflicting things there. If it truly is a graduated tax, then for a Gross Income over $100,000, it would typically tax:
0% on the amount up to $65,000
5% on the amounts between $65,000 and $100,000
10% on the amount over $100,000

So, if someone made $105,000, their total tax would be:
($35,000 * 5%) + ($5,000 * 10%)

If that is correct, then the tax formula for a Gross Income in cell D2 would look like:
Excel Formula:
=(MIN(MAX(0,D2-65000),35000)*0.05)+(MAX(0,D2-100000)*0.1)
 
Upvote 0
okay but the question is asking to use the IF function to calculate the value of the taxes.
 
Upvote 0
okay but the question is asking to use the IF function to calculate the value of the taxes.
So, this is some sort of assignment/homework then.
It would not be ethical for me to do your assignment for you, but I will give you a hint and point you in the correct direction.
Take a look at using Nested IFs, where you check the less of Gross Income (at the different break points) and then calculate the amount based on that.
See this link to see how to set up Nested IF statements: Excel formula: Nested IF function example | Exceljet
 
Upvote 0
So, this is some sort of assignment/homework then.
It would not be ethical for me to do your assignment for you, but I will give you a hint and point you in the correct direction.
Take a look at using Nested IFs, where you check the less of Gross Income (at the different break points) and then calculate the amount based on that.
See this link to see how to set up Nested IF statements: Excel formula: Nested IF function example | Exceljet
Hey Thanks for the TIP! Much appreciated, I will follow the directions and see how it goes.
 
Upvote 0
You are welcome.

One other tip, I would recommend nesting from the top down, i.e.
=IF(D2>100000,...)

That way you do not need to check if it is "in-between" anything, just if it is greater than (i.e. if it is greater than 1000000, do this calculation, if it is greater than 65000, do that calculation, else return 0).
 
Upvote 0

Forum statistics

Threads
1,215,025
Messages
6,122,731
Members
449,093
Latest member
Mnur

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