Quantcast
Channel: C# and excel deleting rows - Stack Overflow
Browsing all 7 articles
Browse latest View live

Answer by rajquest for C# and excel deleting rows

using Microsoft.office.interop.excel delete rows using workseet rangeExcel.Application xlApp = new Excel.Application(); Excel.Workbook xlWorkbook = xlApp.Workbooks.Open(srcFile); Excel.Worksheet...

View Article



Answer by daniele3004 for C# and excel deleting rows

To remove a row you need an only simple row of code as a followxlWorkSheet.Rows[NUMBER_ROW].Delete();

View Article

Answer by KR Akhil for C# and excel deleting rows

// Here is the answers to // 1. Delete entire row - Below rows will shift up// 2. Delete few cells - Below cells will shift up// 3. Clear few cells - No shiftingusing Excel =...

View Article

Answer by Akhila for C# and excel deleting rows

You can specify a cell (eg. A1) and find the entire row containing that cell as a range and then can delete the row.excel.Worksheet sheet = (excel.Worksheet)excelWorkBook.Sheets["sheet1"]; excel.Range...

View Article

Answer by Mahmut EFE for C# and excel deleting rows

You can use this. İt's working ... _Application docExcel = new Microsoft.Office.Interop.Excel.Application { Visible = false }; dynamic workbooksExcel =...

View Article


Answer by DkAngelito for C# and excel deleting rows

You can do it using a Range Object. I assume here that you are using Excel interop. Let say you have your book open, then set the range then delete it It should look something like thisApplicationClass...

View Article

C# and excel deleting rows

I want to write from my form (in C#) to an excel spread sheet and delete certain rows if blank.I can write perfectly fine to a speadsheet and save it, but lets say the user entered data into row a1,...

View Article
Browsing all 7 articles
Browse latest View live




Latest Images