Azzera filtri
Azzera filtri

Deletion of selected rows of excel from Matlab GUI

4 visualizzazioni (ultimi 30 giorni)
HI, I am new to MATLAB and I am trying to delete all rows except 1st and 2nd where I gave headers. But the way, for example if there are 100 rows, this code is deleting 50 rows, and then if I save that file and try to delete again from MATLAB GUI, it will delete 25 out of those 50 and so on. can any one help me out in understanding what am I doing wrong here.
file = 'C:\Users\rk49845\Documents\MR\experimental TCC\exp2.xlsx';
sheet = 'Sheet1';
Excel = actxserver('Excel.Application');
Workbook = Excel.Workbooks.Open(file);
Worksheet = Workbook.Worksheets.Item(sheet);
for row = 3:100;
Worksheet.Rows.Item(row).Delete;
end
Workbook.Save;
Workbook.Close;
  2 Commenti
Adam
Adam il 17 Ago 2018
Modificato: Adam il 17 Ago 2018
Never delete things in a loop from start to end. If you must delete in a loop then do it from end to start, otherwise you are pulling the rug out from under your feet with your deletions.
Better still is to do all deletions at once based on a set of indices but I don't know if that is possible with what you are doing as I don't interact with Excel in Matlab.

Accedi per commentare.

Risposte (1)

Image Analyst
Image Analyst il 21 Ago 2018
Like Adam said in the comment above, reverse the order:
for row = 100 : -1 : 3
Worksheet.Rows.Item(row).Delete;
end
  3 Commenti
Image Analyst
Image Analyst il 21 Ago 2018
You could also delete them all in one shot:
% Select the range
Excel.Range(cellReference).Select;
% Clear the cell contents.
Excel.Selection.Clear;
% Put "cursor" or active cell at A1, the upper left cell.
Excel.Range('A1').Select;
cellReference would be something like 'A3:Z100'.

Accedi per commentare.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by