Ask Question
16 December, 12:41

In cell c11, enter a formula to reference the date stored in cell b7. insert a nested function in cell c12 to calculate the date for the next payment. nest the year, month, and day functions within the date function. add 1 to the month result. copy the function to the range c13:c34.

+3
Answers (1)
  1. 16 December, 13:01
    0
    =B7 to be placed at c11. And the nested function at c12 is

    =DATE (YEAR (B7), MONTH (B7) + 1, DAY (B7))

    And to copy the function to the range c13:c34 copy c12 and drag the cursor to c34 and press enter. Each cell will then show the date with month incremented by 1 each time.

    Explanation:

    =B7 to be placed at c11. And the nested function at c12 is

    =DATE (YEAR (B7), MONTH (B7) + 1, DAY (B7))

    And to copy the function to the range c13:c34 copy c12 and drag the cursor to c34 and press enter. Each cell will then show the date with month incremented by 1 each time.

    Remember, for nesting date function, we need to provide the arguments year, month and day to the date function. Year at B7 is YEAR (B7), Month is MONTH (B7), Day is DAY (B7). And we need to increment the Month by 1. And thus the above formula.

    For referencing to another cell which is B7, we need to write = B7 at c11.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “In cell c11, enter a formula to reference the date stored in cell b7. insert a nested function in cell c12 to calculate the date for the ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers