Encountering issues with Smartload? This guide covers the most common problems, their causes, and step-by-step solutions. Check here first before contacting support.
π§
PROBLEM SOLVING
Troubleshooting
Common issues and how to resolve them
Β
Processing Errors
π΄
"Processing Failed" Error
Possible Causes
- Invalid data types in uploaded file
- DAX formula syntax errors
- Circular references in calculations
- Missing required relationships
Solutions
-
Check the error message details for specific column/table names
- Validate data types match column configurations
- Review recent DAX formula changes for syntax errors
- Try processing individual tables to isolate the issue
π΄
Processing Takes Too Long
Possible Causes
- Large data volumes
- Complex calculated columns
- Many relationships to process
- Inefficient DAX formulas
Solutions
- Consider partitioning large fact tables by date
-
Convert complex calculated columns to measures where possible
- Review and optimize DAX formulas (avoid nested iterations)
- Process during off-peak hours for large refreshes
Data Upload Issues
π΄
File Upload Rejected
Possible Causes
- Column headers don't match existing table structure
- File format not supported (must be CSV or Excel)
- File exceeds size limits
- Special characters in headers or data
Solutions
- Ensure column headers exactly match the target table
- Save Excel files as .xlsx (not .xls)
- For large files, consider splitting into smaller batches
- Remove or encode special characters (quotes, commas in CSV)
π΄
Data Type Mismatch
Possible Causes
- Text values in numeric columns
- Date formats that don't match expected pattern
- Blank cells interpreted incorrectly
Solutions
- Clean data in Excel before uploading
- Use consistent date formats (YYYY-MM-DD recommended)
- Replace blanks with appropriate null values or zeros
- Verify column type settings in Smartload match your data
Relationship Errors
π΄
"Duplicate Values" or "Many-to-Many" Warning
Cause
The primary key column in your attribute table contains duplicate
values. Each key must appear exactly once.
Solutions
- Download the attribute table data
- Use Excel's Remove Duplicates feature on the key column
- Verify which row should be kept for each duplicate
-
Re-upload with Replace Data
π΄
Blank/Missing Values in Reports
Cause
Fact table contains foreign key values that don't exist in the
related attribute table (orphaned records).
Solutions
-
Identify which keys are missing using a cross-reference query
- Add missing records to the attribute table, OR
- Clean up orphaned records from the fact table
DAX Formula Errors
π΄
"Syntax Error" in DAX Formula
Common Issues
- Missing or mismatched parentheses
- Incorrect column references (wrong table name)
- Using single quotes instead of double quotes for text
- Missing commas between function arguments
Solutions
Check column references:
β [Sales]ββ TableName[Sales]
Check text strings:
β IF([Status]='Active'...)ββ IF([Status]="Active"...)
π΄
"Circular Dependency" Error
Cause
A calculated column or measure references itself, either directly
or through a chain of references.
Solutions
- Map out all references in your formula
- Identify where the loop occurs
- Restructure calculations to break the circular reference
Connection Issues
π΄
Cannot Connect from Excel
Possible Causes
- Cube not processed after recent changes
- Network/firewall blocking connection
- Authentication issues
- Outdated connection string
Solutions
- Verify the cube has been processed successfully
-
Check
Smartload System Status
for any service issues
- Try refreshing your Catalyst session
- Contact support if the issue persists
Getting Additional Help
π Before Contacting Support
Gather this information to help us resolve your issue faster:
- Exact error message (screenshot if possible)
- Which table/column/formula is affected
-
What changed recently (new data upload, formula change, etc.)
- Steps to reproduce the issue
- Your cube name and organization
Most Smartload issues stem from data quality problemsβduplicate keys, mismatched data types, or orphaned records. When troubleshooting, start with the data and work your way up to formulas and relationships. If you're stuck, EBM Support is here to help.
Comments
0 comments
Article is closed for comments.