Overview
ERPLite supports bulk data operations through CSV import and export, making it easy to migrate data, perform bulk updates, or create backups.Importing Data
Import records from a CSV file into your table.Getting the Template
Before importing, download the CSV template to ensure your data matches the table structure.1
Open Import Menu
Click the More Options menu (three dots) in the table toolbar
2
Download Template
Click Download Template to get a CSV file with column headers matching your table
3
Fill in Data
Open the template in Excel/Google Sheets and add your data
Template Structure
The template includes headers for each column in your table:Column headers must match exactly. Use the downloaded template to ensure compatibility.
Importing the File
1
Open Import
Click the More Options menu and select Import
2
Select File
Click Select File and choose your CSV file
3
Select Header Row
Specify which row contains your column headers (usually row 1)
4
Map Columns
Map CSV columns to table columns. The system auto-maps matching names.
5
Validate Data
Review any validation errors:
- Red rows: Data doesn’t match column type
- Fix errors or click Discard Selected Rows to skip them
6
Complete Import
Click Confirm to import the validated records
Data Type Handling
The import process automatically converts data types:| Column Type | Expected Format | Example |
|---|---|---|
| Text | Plain text | John Doe |
| Number | Numeric value | 123.45 |
| Boolean | true/false, yes/no, 1/0 | true |
| Date | YYYY-MM-DD | 2024-01-15 |
| DateTime | ISO 8601 | 2024-01-15T10:30:00 |
| Location | address, lat, long | 123 Main St, 37.77, -122.41 |
| Choice | Exact option text | Pending |
| Multi-Select | Comma-separated | Tag1, Tag2, Tag3 |
| List of Text | Comma-separated | item1, item2, item3 |
Import Tips
Handling Date Formats
Handling Date Formats
Dates should be in
YYYY-MM-DD format. Other formats may cause validation errors.Location Fields
Location Fields
For location fields, provide address, latitude, and longitude separated by commas:
123 Main St, 37.7749, -122.4194Choice Fields
Choice Fields
Values must exactly match one of the defined options (case-sensitive).
Relation Fields
Relation Fields
For relation fields, use the record ID or display column value of the target record.
Exporting Data
Export your table data to CSV for reporting, backup, or analysis.1
Apply Filters (Optional)
Use filters to export only specific records
2
Open Export
Click the More Options menu and select Export
3
Download File
The CSV file downloads automatically
Export Limits
Exporting with Filters
To export a subset of your data:- Apply filters to show only the records you want
- The export will only include visible (filtered) records
- This also helps when you have more than 1,000 records
Export Format
Exported CSV files include:- All visible columns (hidden columns are excluded)
- Current filter state applied
- All data types converted to text representation
For AI Agents
API: Bulk Import Records
API: Export Records (Paginated)
Batch Export Pattern
For exporting more than 1,000 records programmatically:Import Validation
The import process validates:- Type matching: Values match column data types
- Required fields: All required columns have values
- Choice validation: Values match defined options
- Relation validation: Referenced records exist
UI Elements
| Action | Location | Icon |
|---|---|---|
| Import | More Options menu | Upload icon |
| Export | More Options menu | Download icon |
| Download Template | Import modal | Download icon |