Generate Excel files from workflow data with professional formatting
The createXlsxFile function enables Vibes to generate Excel files from workflow data, providing a powerful way to export, format, and share structured information. This function transforms arrays of data into professionally formatted Excel spreadsheets with customizable styling, headers, and layouts.
The createXlsxFile function is designed to convert structured workflow data into professional Excel files that can be shared, analyzed, and used across different applications. It provides comprehensive formatting options and handles various data types automatically.
Convert workflow data into Excel files with comprehensive formatting options, custom headers, and professional styling for data export and sharing.
Generate financial reports and analyses for stakeholders and management
Export inventory data for analysis and sharing with teams
Create customer data exports for analysis and business intelligence
Most common use case with structured data objects
[
{ "name": "John Doe", "email": "john@example.com", "age": 30, "active": true },
{ "name": "Jane Smith", "email": "jane@example.com", "age": 25, "active": false }
]Simple lists converted to single-column format
["Apple", "Banana", "Orange", "Grape"]Automatically handles strings, numbers, booleans, dates, and objects
[
{
"product_name": "Widget A",
"price": 29.99,
"in_stock": true,
"launch_date": "2024-01-15",
"metadata": { "category": "electronics", "weight": "1.2kg" }
}
]