- 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 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Johannes Korsawe
le 19 Avr 2022
Réponse apportée : Chetan
le 14 Nov 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 commentaires
Réponse acceptée
Chetan
le 14 Nov 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!