-
Notifications
You must be signed in to change notification settings - Fork 901
Deleting Ranges
Francois Botha edited this page Oct 22, 2016
·
2 revisions
var workbook = new XLWorkbook();
var ws = workbook.Worksheets.Add("Deleting Ranges");
foreach (var ro in Enumerable.Range(1, 10))
foreach (var co in Enumerable.Range(1, 10))
ws.Cell(ro, co).Value = ws.Cell(ro, co).Address.ToString();
// Delete range and shift cells up
ws.Range("B4:C5").Delete(XLShiftDeletedCells.ShiftCellsUp);
// Delete range and shift cells left
ws.Range("D1:E3").Delete(XLShiftDeletedCells.ShiftCellsLeft);
// Delete an entire row
ws.Row(5).Delete();
// Delete a row in a range, shift cells up
ws.Range("A1:C4").Row(2).Delete(XLShiftDeletedCells.ShiftCellsUp);
// Delete an entire column
ws.Column(5).Delete();
// Delete a column in a range, shift cells up
ws.Range("A1:C4").Column(2).Delete(XLShiftDeletedCells.ShiftCellsLeft);
workbook.SaveAs("DeletingRanges.xlsx");
- How do I deliver an Excel file in ASP.NET?
- Does it support Excel 2003 and prior formats (.xls)?
- How can I insert an image?
- Text with numbers are getting converted to numbers, what's up with that?
- How do I get the result of a formula?
- Data Types
- Creating Multiple Worksheets
- Organizing Sheets
- Loading and Modifying Files
- Using Lambda Expressions
- Cell Values
- Workbook Properties
- Using Formulas
- Evaluating Formulas
- Creating Rows And Columns Outlines
- Hide Unhide Rows And Columns
- Freeze Panes
- Copying Worksheets
- Using Hyperlinks
- Data Validation
- Hide Worksheets
- Sheet Protection
- Tab Colors
- Conditional Formatting
- Pivot Table example
- Sparklines
- Copying IEnumerable Collections
- Inserting Data
- Inserting Tables
- Adding DataTable as Worksheet
- Adding DataSet
- Styles - Alignment
- Styles - Border
- Styles - Fill
- Styles - Font
- Styles - NumberFormat
- NumberFormatId Lookup Table
- Style Worksheet
- Style Rows and Columns
- Using Default Styles
- Using Colors
- ClosedXML Predefined Colors
- Excel Indexed Colors
- Using Rich Text
- Using Phonetics
- Defining Ranges
- Merging Cells
- Clearing Ranges
- Deleting Ranges
- Multiple Ranges
- Shifting Ranges
- Transpose Ranges
- Named Ranges
- Accessing Named Ranges
- Copying Ranges
- Using Tables
- Sorting Data
- Selecting Cells and Ranges
- Row Height and Styles
- Selecting Rows
- Inserting Rows
- Inserting and Deleting Rows
- Adjust Row Height and Column Width to Contents
- Row Cells
- Column Width and Styles
- Selecting Columns
- Inserting Columns
- Inserting and Deleting Columns
- Adjust Row Height and Column Width to Contents
- Column Cells
- Pages Tab
- Paper Size Lookup Table
- Margins Tab
- Headers and Footers Tab
- Sheet Tab
- Print Areas and Page Breaks