Format Guide
How to prepare your CSV and Excel files for Replay
Format rules
1. Required header row
The first row of the file must contain column names. Each column must have a unique name.
| ID | Nome | Importo | |
|---|---|---|---|
| 001 | Mario Rossi | mario@example.com | 1500.50 |
| 002 | Anna Bianchi | anna@example.com | 2300.00 |
2. Key column with unique values
There must be a column with unique values (like an ID or code). This column is used to compare rows across different versions.
Correct
| ID |
|---|
| 001 |
| 002 |
| 003 |
Wrong - Duplicates
| ID |
|---|
| 001 |
| 001 |
| 003 |
Wrong - Empty
| ID |
|---|
| 001 |
| (vuoto) |
| 003 |
3. CSV format
For CSV files, the delimiter is automatically detected (comma, semicolon, tab).
4. Excel format (.xlsx)
FormatGuide_Rule4Intro
One sheet only: the file must contain a single worksheet
FormatGuide_Rule4_NoMerged
Clean table: header in the first row, data in subsequent rows
Not protected: the file must not be password-protected
5. Version compatibility
When uploading a new version of a project, the file must have exactly the same columns (same name and order) as the previous version.
Common errors and how to fix them
Limits
| Parameter | Limit |
|---|---|
| File size | 10 MB |
| Maximum number of rows | 100.000 |
| Maximum number of columns | 100 |
| Excel sheets | 1 1 (single sheet only) |
| Accepted formats | CSV (.csv), Excel (.xlsx) |