Share via

linking tabs in excel

michael h 40 Reputation points
2026-02-26T13:23:11.03+00:00

have linked 2 tabs on a document so when I change the first on it automatically changes the other one which shows +7 days. Occasionally I only want it to be +5 and +2 days how can I do that.

Microsoft 365 and Office | Excel | For home | Windows
0 comments No comments
{count} votes

Answer accepted by question author
  1. Q&A Assist
    2026-02-26T13:23:20.3866667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    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:

    1. On the second sheet (the one that shows the shifted date), pick a cell for the offset, for example B1.
    2. Type the number of days you want there:
      • 7 for +7 days
      • 5 for +5 days
      • 2 for +2 days
    3. 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:

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.