Multiple Conditions

Sara_M

New Member
Joined
Nov 16, 2017
Messages
14
Hi all,
I have an issue coming up with an IF statement with multiple conditions.
Background Info:
We have a agreement from 2023 to 2026 with a company
if the duration is less than 1 year they get cashback of 5% based on Column N on Year 1
If the duration is >= then 1 they get 5% based on column K, for the first year, 4% for the second year and 3% on the third year.
I was able to do this calculation
Fees - First year = IF(O5<1,N5*0.05,K5*0.05)
Fees - Second Year = IF($O3<=1,0,IF($O3>1,$K3*0.04,$N3*0.04))
Fees - Third Year = IF($O3<=2,0,IF($O3>1,$K3*0.03,$N3*0.03))

1698662937244.png


But my problem is, if the contract started in 2024 instead, the maximum they can reach is 2 years, so I should add a statement saying something like if the year in column B is 2023, then IF($O3<=1,0,IF($O3>1,$K3*0.04,$N3*0.04)), if the year in column B is 2024 then IF(O5<1,N5*0.05,K5*0.05)

Not sure if it's clear, Year 1 depends on when the contract starts.

Many Thanks
 

Attachments

  • 1698662869141.png
    1698662869141.png
    10 KB · Views: 2

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Like this?
Excel Formula:
=IF(YEAR(B5)>=2024,IF(O5<1,N5*0.05,K5*0.05),IF($O3<=1,0,IF($O3>1,$K3*0.04,$N3*0.04)))
 
Upvote 0
Sorry, I just tested, this fixes the charges for year 2, but on the third column I still need to show the 5% 4% and 3% options depending if the contract started in 2023, 2024 or 2025. How can i combine them?
 
Upvote 0
LOOKUP function will be more practical if you have several conditions:
Excel Formula:
=LOOKUP(YEAR(B5), {2023;2024;2025}, {IF($O3<=1,0,IF($O3>1,$K3*0.04,$N3*0.04));IF(O5<1,N5*0.05,K5*0.05);IF("something for 2025")})
Or you can assign percentages directly if it fits for you:
Excel Formula:
=LOOKUP(YEAR(B5), {2023;2024;2025}, {0.05;0.04;0.03})
 
Upvote 0
LOOKUP(YEAR(B5), {2023;2024;2025}, {IF($O3<=1,0,IF($O3>1,$K3*0.04,$N3*0.04));IF(O5<1,N5*0.05,K5*0.05);IF("something for 2025")})
Sorry, never used this formula, what would i add in "something for 2025" if i had to add in on this line for example?

At the moment i have in:
Fees for Year one IF($O4<=1,$N4*0.05,$K4*0.05)
Fees for Year Two (your formula fixed the issue wonderfully) IF(YEAR($B4)>=2024,IF($O4<1,$N4*0.05,$K4*0.05),IF($O4<=1,0,IF($O4>1,$K4*0.04,$N4*0.04)))
Fees for Year three I have this at the moment but only works in the contract starts in 2023 IF($O4<=2,0,IF($O4>1,$K4*0.03,$N4*0.03)).

1698666922778.png
 

Attachments

  • 1698666881633.png
    1698666881633.png
    12.8 KB · Views: 3
Upvote 0
Assuming Duration column is G, paste this to First Fee Column:
Excel Formula:
=IF(COLUMN(A1)>$G4,"",LOOKUP(COLUMN(A1), {1;2;3}, {IF($O4<=1,$N4*0.05,$K4*0.05);IF($O4<=1,0,IF($O4>1,$K4*0.04,$N4*0.04));IF($O4<=2,0,IF($O4>1,$K4*0.03,$N4*0.03))})
I am afraid this is the best I can offer. maybe you should wait for other answers.
 
Upvote 0
OK,

I rewrite the formula according to your needs (I guess). I think years are irrelevant because you already have your duration in column O. It is still uncertain for me that when to house column K and column N. Paste this formula to Z3 and pull to right and down.
Excel Formula:
=IF($O3<1,$N3*0.05,IF($O3<COLUMN(A1),0,$K3*((6-COLUMN(A1))/100)))
 
Upvote 0

Forum statistics

Threads
1,215,086
Messages
6,123,040
Members
449,092
Latest member
ikke

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