Excel line writer
Generate an Excel file on which you can append multiple rows at the given sheet.
Example
# Configuration:
Sheet: SHEET_1
Headers: A -> Name | B -> Weight
# Data input:
Excel row 1: A -> Apple | B -> 30gr
Excel row 2: A -> Ham | B -> 12kg
# Output:
| A | B |
|-----------------|
1 | Name | Weight |
2 | Apple | 30gr |
3 | Ham | 12kg |
|-----------------|
| SHEET_1 |
Parameters
Sheetname—REQUIRED
The name of the Excel sheet to write.
Headers
The headers to write in the Excel file. The headers are written in the first row. (For example: A -> Name | B -> Weight)
Input
Excel row—REQUIRED
All the Excel rows to append to the Excel file.