using xlswrite to edit excel, how to remove the 'content-selection' when I open it.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Leo Zhai
el 11 de Sept. de 2020
Comentada: Image Analyst
el 21 de Sept. de 2020
When I use xlswrite to edti an excel. then I open it, it will shows the edited part as bellow 'now: selection status'(with a gray box).But I want it to be as 'expected: no-selection status'
2 comentarios
Respuesta aceptada
Monisha Nalluru
el 15 de Sept. de 2020
The option of not selecting is not present with xlswrite().
But you can try to use UseExcel=false with above writefunctions
3 comentarios
Image Analyst
el 21 de Sept. de 2020
Yes, with old versions of MATLAB, they did not leave the Excel running as an ActiveX server so each time you called it, it has to launch Excel all over again. The way around that is to use ActiveX the whole way though. I'm attaching an example.
Más respuestas (1)
Image Analyst
el 14 de Sept. de 2020
You can call xlswrite() again to just write 'Req#' to A1
xlswrite(fileName, 'Req #', sheetName, 'A1');
0 comentarios
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!