Microsoft on-premises server product that runs Office Online.
Same regression here on Office LTSC 2024 (volume licensed), so it is not limited to Office 2021.
- Broken: Version 2408 Build 16.0.17932.20976 (September 8, 2026 update)
- Working: Build 16.0.17932.20910 (August 11, 2026) and 16.0.17932.20162
- Windows 11 (build 26200), x64
Symptoms (both in the Excel UI via VBA and via COM automation):
-
Worksheet.Copyfails with "We couldn't copy this sheet." - even on a brand-new blank workbook -
Range.AutoFillfails ("AutoFill method of Range class failed") - Reproduces in a clean automation instance (no add-ins, no XLSTART), so it is not caused by add-ins or the workbook content
Minimal repro (PowerShell):
$xl = New-Object -ComObject Excel.Application
$wb = $xl.Workbooks.Add()
$wb.Worksheets.Item(1).Copy() # -> We couldn't copy this sheet.
Workaround: rolled back with OfficeC2RClient.exe /update user updatetoversion=16.0.17932.20910 and disabled updates; the same script then passes. For reference, Office 2024 retail 16.0.20326.20144 (released the same day) is not affected on another machine.