How to hide sheet of excel file with matlab?
Afficher commentaires plus anciens
Hi,
I want to hide some sheets of my excel file through matlab. Kindly help me out.
Any suggestion is appreciated.
Thank you.
3 commentaires
Ganesh Gaonkar
le 19 Fév 2015
Hi Suraj,
Can you explain little bit more about your requirement? What did you mean when you said that you want to hide the Excel sheet? did you mean that you have multiple sheets in Excel file and you want to change the active sheet to something else ? or you want to encrypt the file itself so that others cannot view them? Please explain your complete use case.
Thanks,
Ganesh
Suraj Srivastava
le 19 Fév 2015
Olaf Müller
le 5 Juin 2018
Hi Suraj,
hope my comment does not come too late ;-). Please try the approach as used for the example below:
Excel = actxserver('Excel.Application'); WB = invoke(Excel.Workbooks,'open', theFileName); WB.Worksheets.Item(1).Visible = 'xlSheetHidden'; WB.Worksheets.Item(1).Visible = 'xlSheetVisible';
Regards Olaf
Réponses (0)
Catégories
En savoir plus sur Data Import from MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!