Excel API Library for Java - Sample Browser | Document Solutions | Tables
[
フレーム]
src="bundle.js">
## 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
// Create a new workbook
Workbook workbook = new Workbook();null
// Save to an excel file
workbook.save("FolderExample.xlsx");
// Create a new workbook
var workbook = Workbook()
FIXME: No Kotlin code in this demo.
// Save to an excel file
workbook.save("FolderExample.xlsx")