Email Connector CSV format vs CSV UTF-8

Hello,
I download an Excel file from a supplier portal and email it to a DOMO email connector. By default the format is CSV however I find I have to save the file as CSV UTF-8 otherwise DOMO does not ingest all the rows (roughly 17% of the total rows is ingested if I do not change the file format).
I have attempted to change the configuration settings but still no luck. I have attached a screenshot of my current settinga
for reference as well as the file format I'm referring to.
Answers
-
The problem appears to be with the character set interpretation. The CSV UTF-8 is a universal standard for encoding text. Especially special characters such as non-English. If Excel saves using default csv, it is limited in the characters it supports and may truncate or skip sections. But 17% data loss sounds extreme.
I don't know about changing the settings in the connector. If you can't automate saving UTF-8 you could try Python.import pandas as pd
df = pd.read_excel("input.xlsx")
df.to_csv("output.csv", index=False, encoding='utf-8-sig')** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 664 Datasets
- 120 SQL DataFlows
- 2.3K Magic ETL
- 824 Beast Mode
- Visualize
- 2.6K Charting
- 87 App Studio
- 46 Variables
- Automate
- 195 Apps
- 486 APIs & Domo Developer
- 92 Workflows
- 24 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 119 Domo Everywhere
- 283 Scheduled Reports
- 11 Software Integrations
- Manage
- 143 Governance & Security
- 11 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 116 Community Announcements
- 5K Archive