Share via

Linking excel cells on different tabs

michael h 40 Reputation points
2026-02-26T11:21:34.5+00:00

How can I link 2 tabs on a spread sheet both have a drop down with weekly dates. When I change the week date on the first tab I want it to automatically change the date on the other tab. However, the second tab date will be one week on so +7 days. Many thanks

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-26T11:21:44.1033333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Use a formula on the second tab that references the first tab’s date cell and adds 7 days.

    Assume:

    • First tab is named Week1 and the date dropdown is in cell B2.
    • Second tab is named Week2 and the date should appear in cell B2.

    On the second tab (Week2), in cell B2, enter:

    =Week1!B2+7
    

    Key points:

    • Week1!B2 links to the date on the first tab.
    • +7 makes it one week later.
    • If the sheet name has spaces or special characters, wrap it in single quotes, for example:
        ='Week 1'!B2+7
      
    • Make sure the cell on the second tab is formatted as a Date so it displays correctly.

    Now, whenever the dropdown date on the first tab changes, the second tab will automatically update to show the date 7 days later.


    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.