- Add a delay: After quitting Excel, pause your script to let the system release the file.
- Check if the file is locked: Use "fopen" to check the file's status before writing to it. If it's locked, pause and retry.
- Disable autosave in Excel: If files are syncing to OneDrive or SharePoint, turning off autosave might help. Remember to manually save your changes.
writecell does not work properly after invoking and closing actxserver
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Johannes Korsawe
el 19 de Abr. de 2022
Respondida: Chetan
el 14 de Nov. de 2023
Hi folks,
i have some strange behavior after switching to office 365.
My former workflow, which consists of a huge number of alternating commands involving writecell, writematrix and starting and deleting excel via actxserver (Excel = actxserver('Excel.Application');doSomeStuff.m;invoke(Workbook, 'Save');invoke(Excel, 'Quit');delete(Excel);), happens to crash/stop due to "unable to write to file" error.
Indetail, the error message says
Unable to write to file 'C:\Users\ekorsaw\Desktop\check.xlsx'. You may not have write permissions or the file may be open by another application.
This did not happen before changing to office365.
Any idea how to force matlab to close the excel document after each access command?
0 comentarios
Respuesta aceptada
Chetan
el 14 de Nov. de 2023
You're experiencing issues with the "actxserver" and file permissions, typically when an Excel file is open, locked for editing, or syncing with Office 365/Onedrive.
Here are some solutions:
Hope it Helps!
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!