Help with a very complicated formula

richard1234567891011

Board Regular
Joined
Feb 21, 2018
Messages
91
I have issues with this formula that is very hard to write. The formula is: If G111 is YES and F21= normal loan use one formula otherwise 0. If G111 is YES and F21= interest only loan use another formula otherwise 0.
That is my formula like now. (my excel is in Italian) =SE(G111="YES";(-VA($F18/$F20;($F20-G101)*$F19;$F22*(-1)));0) But in this formula is missing all the condition about the normal loan and interest only loan, (this is the formula for the normal loan) so, all the second IF (SE in italian). The second IF infact should be: =SE(G111="YES";(F13)
;0) The big issue at the end, is put that formula together with another IF and let the total formula works for, cells G111 is there is yes and Cell F21 if inside it is written Normal Loan or interest only loan. I hope that it is clear.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.

<tbody>
</tbody>

Try this

Code:
=SE(G111="yes";SE(F21="Normal Loan";(-VA($F18/$F20;($F20-G101)*$F19;$F22*(-1)));(F13));)
 
Last edited:
Upvote 0
It is not working. It is working in the first part. But not in the interest only part. It is giving me a strange result for the F13 part so for the interest only loan.
 
Upvote 0

Forum statistics

Threads
1,226,116
Messages
6,189,057
Members
453,524
Latest member
AshJames

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