Ask Question
26 May, 06:11

6. In cell K4, create a formula using the IF function to calculate the interest paid on the mortgage (or the difference between the total payments made each year and the total amount of mortgage principal paid each year). a. The formula should first check if the value in cell H4 (the balance remaining on the loan each year) is greater than 0. b. If the value in cell H4 is greater than 0, the formula should return the value in J4 subtracted from the value in cell D5 multiplied by 12. Use a relative cell reference to cell J4 and an absolute cell reference to cell D5. (Hint: Use 12*$D$5-J4 as the is_true argument value in the formula.) c. If the value in cell H4 is not greater than 0, the formula should return a value of 0. Copy the formula from cell K4 into the range K5:K18.

+5
Answers (1)
  1. 26 May, 08:16
    0
    a. = IF (H4>0,12*$D$5-J4,0)

    Explanation:

    a. = IF (H4>0,12*$D$5-J4,0)

    If (H4>0 is the logical test,

    12*$D$5-J4 is [value_if_true]

    0 is [value_if_false]

    b. Referencing to the above formula in (a), which is the required formula which should be typed in cell K4.

    Absolute referencing of cell D5 means that this will not change while extending this formula to the entire column. Whereas, since cell H4 and J4 have relative cell referencing, these will change relatively as we extend the formula to the entire column.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “6. In cell K4, create a formula using the IF function to calculate the interest paid on the mortgage (or the difference between the total ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers