Multiple nested IF(AND formula troubleshooting

Stuepef

Board Regular
Joined
Oct 23, 2017
Messages
128
Office Version
  1. 2021
Platform
  1. Windows
I created a auto-calculate spreadsheet to display Employer contribution % for both employees and dependents (enter % in specific cell). To account for the many combinations of 0%-100%, I have tried to encompass the following combinations in a nested IF(AND statement. I am looking to put different %'s in cells A1 & A2 to calculate how much the employer and the employee have to pay.

Employer Contribution %Employer Contribution %
EmployeeDependent
0%0%
100%0%
100%100%
1%-99%0%
1%-99%1%-99%
100%1-99%

<tbody>
</tbody>

Here is how my spreadsheet looks:
Employer Contribution %
Employee % (Cell A1)
Dependent % (Cell A2)
(Cell A4)(Cell B4)(Cell C4)(Cell D4)(Cel E4)(Cell H4)(Cell I4)(Cel J4)
NameEmployeeSpouseChildrenTotalEmployerEmployeeTotal
Johnson$100$100$100$300IF(AND

<tbody>
</tbody>


My formula works out perfectly, except when I added the last line causing the result to be FALSE. If I separate the last line, than the formula works like it should, but for whatever reason, it doesn't when I attach it to the bigger formula. I am trying to troubleshoot why I am receiving the FALSE answer when I put 100% in A1 and 50% in A2.

Here is my current formula:
Code:
<code style="margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, sans-serif; vertical-align: baseline; white-space: inherit;">=IF(AND(A1=0%,A2=0%),0,
IF(AND(A1=100%,A2=0%),B4,
IF(AND(A1=100%,A2=100%),E4,
IF(AND(A1>1%,A1<=99%,A2=0%),A1*B4,
IF(AND(A1>1%,A1<=99%,A2>1%,A2<=99%),(SUM(C4:D4)*A2)+(A1*B4,
IF(AND(A1=100%,A2>1%,A2<=99%),(SUM(C4:D4)*A2)+(A1*B4))))))))</code>
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
You are missing the close parenthesis on the second to last line. IF(AND(A1>1%,A1<=99%,A2>1%,A2<=99%),(SUM(C4:D4)*A2)+(A1*B4),
 
Upvote 0
That was a copy and paste error on my part within the original post. :ROFLMAO: Any thoughts on why I would be receiving the FALSE answer?
 
Upvote 0
Your last IF statement doesnt have a value if false condition so it defaults into saying FALSE meaning none of the conditions in your IF statements are met. This happened when I copied and pasted the formula as you had it but once I added the parenthesis it gave me 200 when A1=100% and A2=50%. This is the formula as it is in my sheet right now:

Code:
=IF(AND(A1=0%,A2=0%),0,IF(AND(A1=100%,A2=0%),B4,IF(AND(A1=100%,A2=100%),E4,IF(AND(A1>1%,A1<=99%,A2=0%),A1*B4,IF(AND(A1>1%,A1<=99%,A2>1%,A2<=99%),(SUM(C4:D4)*A2)+(A1*B4),IF(AND(A1=100%,A2>1%,A2<=99%),(SUM(C4:D4)*A2)+(A1*B4)))))))

The only time this would result in FALSE result is when either A1 or A2 is more than 100% or when A1=0
 
Upvote 0
Maybe I'm missing something, but that whole formula appears to resolve to:

=A1*B4+A2*(C4+D4)
 
Upvote 0
I simplified this problem in the original post, but am I able to attach my actual workbook? I checked and rechecked the formula to match exactly what you wrote and it still does not work.
 
Upvote 0
My workbook had the information across three sheets within the workbook, but as soon as I moved the contribution %'s to the calculation sheet, it worked fine. Has anyone else ran into this issue before?
 
Upvote 0
Yes in essence that is what part of the formula is trying to do. I made the IF(AND statement to account for all combinations 0-100% for both the employee and dependent. Definitely open if there is an easier way!
 
Upvote 0
I suggest that you compare both your nested IF formula with my formula from post 5. Try the same data on both of them and see if you get the same results. I checked each case from the IF formula, and they all are covered. If you find a case where you don't get the expected results, let me know.

As far as moving the contribution percentages to another sheet, keep in mind that if you refer to a cell on a different sheet, you have to list the sheet name with it, e.g.

=A1+1 becomes
=Sheet2!A1+1
 
Upvote 0
The simple formula you made calculates exactly how it should, thank you for simplifying my over complicated attempt!
 
Upvote 0

Forum statistics

Threads
1,216,038
Messages
6,128,450
Members
449,453
Latest member
jayeshw

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