K
Kitt
Where in =PMT(B3/B5,B4*B5,B6) do you enter the IF Function?
The cells are as follows : B3 Annual Interest Rate, B4 Term Of Loan (Years),macropod said:Hi Kitt,
Anywhere or nowhere - it depends on what, if anything, the IF test is for.
Perhaps you could be more specific?
Cheers
Sorry, Im very new to this. I am working on a tutorial for a loan calculator. The final total is "Payment per period" and I have been asked for the total to show $0 when the cells are empty instead of error #DIV/0!
macropod said:Hi daddylonglegs,
Not if B4 is zero. The correct rendition should have been:
=IF(OR(B5=0,B4=0),0,PMT(B3/B5,B4*B5,B6))
An alternative rendition would be:
=IF(B5*B4=0,0,PMT(B3/B5,B4*B5,B6))
Cheers