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

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.

<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,215,186
Messages
6,123,537
Members
449,106
Latest member
techog

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