IF Formula with Exception

Dandelion3

New Member
Joined
Dec 6, 2023
Messages
16
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
  3. Web
Hi everyone.

I have an IF formula in place for a file that i'm working on. Final value is based on a percentage, but there is one person whose final value should be based on a dollar value instead. The current formula conditions apply no matter what the user name is, but there is one person who is an exception, so I need to make adjustments to basically say "All else applies, but for this particular user, it should be something different" while keeping everything else in place. I still want everything on the same tab. Hopefully that makes sense. Do i just add a comma & put that IF statement on the end? Will that change everything else?
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
You are going to have to show us your current IF formula, explain any ranges it refers to, and tell us what cell/column the names are in. Then we have to know where to get the dollar value from.
 
Upvote 0
You are going to have to show us your current IF formula, explain any ranges it refers to, and tell us what cell/column the names are in. Then we have to know where to get the dollar value from.
1701881241388.png

Attached is the current formula in place (in column Z) and should apply to all owners, but there is one owner who has a different structure. With what you see here, no matter what the name (owner) is, cell Z should be a % based of what the classification is in column B...... but for this one owner who is an exception, column B should be a dollar value. So *using dummy numbers here*, If John Doe (the exception) is listed in column E and the classification is "New Logo" the modifier should be $20. If the term (Column R) for John Doe is 1 year it should be $5, 2 years, $10, 3 years or greater, $15. I want to include this exception for him and keep everything else the same for any other names.
 
Upvote 0
Is there a column entry for John Doe that makes him unique, ie, "New Logo"?
If statements rely on comparing content of cells to guide how the formula works; an indicator cell would help drive the formula to the right result.
 
Upvote 0
Something along these lines, wrapping your current formula in another IF to test the owner name:

=IF(E2="John Doe",$ amount formula, IF(B2="Channel Driven/New Logo",80%,IF(B2="New",100%,IF(B2="New Logo",150%,IF(B2="Channel Driven",70%,IF(B2="Resale",80%,0))))))
 
Upvote 0
Is there a column entry for John Doe that makes him unique, ie, "New Logo"?
If statements rely on comparing content of cells to guide how the formula works; an indicator cell would help drive the formula to the right result.
No, just his name in the user column. Everything else is the same. The classification modifier for his commission payout is just based on a set value (depending on contract terms & category) rather than a percentage of an amount.
 
Upvote 0
Something along these lines, wrapping your current formula in another IF to test the owner name:

=IF(E2="John Doe",$ amount formula, IF(B2="Channel Driven/New Logo",80%,IF(B2="New",100%,IF(B2="New Logo",150%,IF(B2="Channel Driven",70%,IF(B2="Resale",80%,0))))))
That makes sense, but how would I write the formula for different instances? I mean If E2 = John Doe AND R2 = 36, AND B2 = New Logo, then the the value should be $50?

Hopefully that makes sense
 
Upvote 0
That makes sense, but how would I write the formula for different instances? I mean If E2 = John Doe AND R2 = 36, AND B2 = New Logo, then the the value should be $50?

Hopefully that makes sense
You just copy and rewrite your current formula to account for whatever $ amounts you want:

=IF(E2="John Doe",IF(B2="Channel Driven/New Logo",26,IF(B2="New",33,IF(B2="New Logo",50,IF(B2="Channel Driven",23,IF(B2="Resale",26,0))))), IF(B2="Channel Driven/New Logo",80%,IF(B2="New",100%,IF(B2="New Logo",150%,IF(B2="Channel Driven",70%,IF(B2="Resale",80%,0))))))
 
Upvote 0
Does column R only come into play with John Doe or all other owners too? And what does column R do? Is it a multiplier? Or some other code to determine $ amount?
 
Upvote 0

Forum statistics

Threads
1,215,150
Messages
6,123,312
Members
449,094
Latest member
Chestertim

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