If one sheet is always “+7 days” from another, the second sheet probably uses a formula like:
=Sheet1!A1 + 7
To sometimes use +5 or +2 instead of +7, replace the hard‑coded 7 with a cell that holds the offset you want.
Example setup:
- On the second sheet (the one that shows the shifted date), pick a cell for the offset, for example B1.
- Type the number of days you want there:
- 7 for +7 days
- 5 for +5 days
- 2 for +2 days
- In the date cell on the second sheet (say A1), use:
=Sheet1!A1 + B1
Now:
- Changing the original date on Sheet1 will still update Sheet2 automatically.
- Changing B1 between 7, 5, or 2 will switch between +7, +5, or +2 days without breaking the link.
If the link was created by copying a cell from the first sheet and using Paste Link, edit the resulting formula in the formula bar to add the offset cell instead of a fixed +7.
References: