Google-sheets – How to enter a date in a cell and have the date for one week later automatically fill another cell

dategoogle sheets

I want to be able to type in a date in one cell, and then automatically have the date that is seven days from the date I typed appear in another cell in that same row under a different column. How do I do this?

Best Answer

You can use this formula.

Formula

=ARRAYFORMULA(IF(ISBLANK(A2:A),"",A2:A + 7))

Screenshot

enter image description here

Example

I've created an example file for you: new date from entered date