Excel API Library for .NET - Sample Browser | Document Solutions | Tables
[
フレーム]
## Tables
To more easily manage and analyze data in spreadsheet, you can create table for a range. A table consists of rows and columns that you can format and manage independently in a worksheet. You will learn how to:
- Add or remove a table in a worksheet
- Apply filtering to a table column
- Apply sorting to a table column
- Apply either built-in or custom table styles
- Access each range of a table
- Add or remove a table column
- Perform calculations for a specific table range
// Save to an excel file
workbook.Save("FolderExample.xlsx");
' Create a new Workbook
Dim workbook As New Workbook
FIXME: This demo doesn't have VB code.
' save to an excel file
workbook.Save("FolderExample.xlsx")