Example of Range Manipulation in ASP.NET MVC Excel (XlsIO) Library
This sample demonstrates how to manipulate cells in a spreadsheet using Excel (XlsIO) Library.
DEMO
SOURCE
A range is a group or block of cells in a worksheet. Ranges are identified by cell references or addresses of the cells in the upper-left and lower-right corners of the range. These two references are separated by a colon (:), which tells Excel to include all the cells between these start and end points. An adjacent cell's range can be depicted as "A5:F10".
This sample demonstrates Essential XlsIO's support for manipulating a range of cells.
Features:
- Named range usage
Named ranges are a powerful tool in Excel that allows to assign a meaningful name to a single cell or a range of cells. For example, you can assign the name "Cell1" to cell "C1" and then use the name "Cell1" anytime you would normally use the cell C1. This allows the user to name a collection of cells or a single cell, making it more readable.