Excel 2608 vs 2607 – Updated data not reflected in dependent worksheets

Pooja 0 Reputation points
2026-08-26T17:33:58.9233333+00:00

Hi Team,

We are experiencing an issue in our Excel Office Add-in after upgrading from Excel version 2607 to 2608.

Our add-in has a process that updates source data in the workbook and then relies on PivotTables/workbook data to populate values in other worksheets.

Expected behavior: The following flow works correctly in Excel 2607:

Update values in worksheet->Source/worksheets updated->PivotTable-dependent worksheets updated

Issue in Excel 2608:

In Excel 2608, the Update values process completes successfully, and the source data is updated, but the values are not reflected in the dependent worksheets.

Because these worksheets are not updated, our other data related functionality fails due to the target Workpaper containing stale values.

We verified this by downgrading Excel from 2608 to 2607. The same add-in and functionality work correctly in 2607.

Our question: Could you please investigate and confirm whether there were any changes in Excel 2608 related to:

PivotTable.refreshAll()

In particular, is there a known regression in Excel 2608 where a PivotTable refresh can complete successfully without updating dependent worksheet values?

Versions tested:

Excel 2606/ 2607 — Working

Excel 2608 — Not working

Thank you.

Microsoft 365 and Office | Excel | For business | Other
0 comments No comments

1 answer

Sort by: Newest
  1. Kristen Tran 1,520 Reputation points Independent Advisor
    2026-08-26T18:11:53.78+00:00

    Hi Pooja,

    Thank you for the clear description confirming that in Excel 2608 your Office Add-in completes the update of the source data successfully, yet the PivotTable-dependent worksheets continue to display stale values, while the identical flow behaves correctly in Excel 2606 and 2607.

    This behavior occurs because Excel 2608 changed the timing of the PivotTable refresh pipeline, so PivotTable.refreshAll() now returns once the refresh has been queued rather than once the PivotCache has been fully rebuilt and written back to the sheet. Any code that reads or copies values immediately after that call runs against the previous cache state, which is why the dependent Workpaper worksheets keep the earlier values even though the update itself reported success.

    Below are some workarounds that suit the situation:

    1/ Enforce a synchronized refresh and recalculation sequence in your add-in

    • In your update routine, call PivotTable.refreshAll() as you do today, then immediately call await context.sync() so the queued refresh is committed to the workbook. Work with PivotTables using the Excel JavaScript API
    • Load the PivotTable collection explicitly, iterate through each PivotTable, and call refresh() on each one individually, then call await context.sync() again. Individual refresh calls give Excel a defined completion point per PivotTable.
    • After the second sync, force a full recalculation with context.workbook.application.calculate(Excel.CalculationType.fullRebuild), followed by a final await context.sync().
    • Only after this final sync, read or copy the values into the dependent worksheets. This ordering guarantees that the PivotCache, the formulas, and the dependent ranges are all in a settled state before your downstream logic executes.
    • References: Excel JavaScript object model in Office Add-ins, including load and synchronization behavior

    2/ Take manual control of the calculation mode during the update cycle

    • At the start of the update process, set context.workbook.application.calculationMode = Excel.CalculationMode.manual and sync.
    • Perform your source data write operations and the PivotTable refresh steps described in Solution 1.
    • Open each PivotTable definition in the workbook, go to PivotTable Analyze, then Options, then Data, and confirm that background refresh is disabled for every external or query-based PivotTable. Background refresh returns control to your code before the data arrives. Refresh PivotTable data, including background refresh and layout options
    • Also confirm that Defer Layout Update is cleared on each PivotTable, because a deferred layout suppresses the visible value update even after a successful refresh.
    • Trigger fullRebuild, Sync, then set the calculation mode back to automatic and sync a final time. This removes any dependency on Excel's internal recalculation timing. Change formula recalculation, iteration, or precision in Excel

    3/ Add a validation checkpoint and keep a supported fallback while the investigation proceeds

    • Before your dependent worksheet logic executes, read one known cell from each PivotTable value area and compare it against the value you just wrote to the source sheet.
    • If the comparison does not match, apply a short retry loop, for example, three attempts with a delay of 300 to 500 milliseconds, each attempt calling refresh() and calculate(fullRebuild) again before rereading the checkpoint cell.
    • Log the build number, the PivotTable name, and the checkpoint result on each attempt, since this data will strengthen the engineering review of the version difference.
    • If your production timeline requires immediate stability, pin the affected machines to the Excel 2607 build through the Office Deployment Tool using the Version attribute in your configuration XML, and lift that pin once a corrected build is confirmed. How to revert to an earlier version of Microsoft 365 Apps

    Alternatively, as a user-to-user support forum, I hope you understand that I can't modify product behavior or raise development changes directly with the engineering team through this channel. However, Microsoft frequently restores previous behavior once enough customers report the same impact, so I strongly recommend submitting your report through the Excel · Community, describing the difference between build 2607 and build 2608 and the effect on your PivotTable dependent worksheets. This is the most effective way to ensure your experience reaches the product team and can be considered for future updates.

    You've clearly identified a real-world challenge, and your suggestion reflects a deep understanding of user needs - feedback like yours is truly valuable and helps shape the future of Microsoft Teams. User's image

    Once you’ve submitted your feedback, feel free to share the link here. I’d be happy to upvote it to help increase its visibility.   

    Additionally, as other users have raised similar concerns and may not be aware of where to share their feedback, I hope this response helps clarify the situation and suggests a potential next step. Highlighting this information can make it more visible to others in the community who may be facing the same issue, making it easier for them to find guidance and contribute their feedback as well.     

    Thank you again for your time and for raising this important usability concern. If you have any further questions or need additional assistance, please don’t hesitate to reach out.     

    Wishing you a smooth rest of your day.    


    If the answer is helpful, please click "Yes". If you have extra questions about this answer, please click "Comment".  

    Note: Please follow the steps in the forum documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Was this answer 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.