Replies: 5 comments 8 replies
-
Hi @R0Wi , .xls and .xlsx files are more complex to process because:
That said, we would like to understand the approach you have in mind to design the support for .xls and .xlsx files. |
Beta Was this translation helpful? Give feedback.
-
Hi @R0Wi , I tried to reproduce with the following csv file:
I was able to successfully import it with no errors. Note that I had to modify the CSV file generated by Excel to have semicolon character as the delimiter. The original CSV generated by Excel was:
What settings did you specify in Excel to generate a CSV file with semicolon char as the delimiter? |
Beta Was this translation helpful? Give feedback.
-
Hi @R0Wi , Thanks for the screenshot of Settings dialog along with the csv file. Check the checkbox "Allow other characters as CSV delimiters" and try. It should fix your issue. |
Beta Was this translation helpful? Give feedback.
-
Here is a sample .xls to .csv converter code based on material and open source implementations found online. It does not work for .xlsx.
Here is pom.xml:
Here is an example:
|
Beta Was this translation helpful? Give feedback.
-
A few alternatives to convert from .xls and .xlsx to .csv on command line are:
|
Beta Was this translation helpful? Give feedback.
-
Is your feature request related to a problem? Please describe.
In our company we often use Microsoft Excel to compose data we want to upload to Salesforce. Unfortunately it's currently not possible to use these Excel sheets directly as a datasource inside of the Data Loader.
Describe the solution you'd like
Alternatively to CSV files, add support for .xlsx-files, too.
Describe alternatives you've considered
The current workaround is to create CSV files from the mentioned Excel files and use these as datasource.
Additional context
If you're willing to implement such a feature, I'd be glad to help 👍
Beta Was this translation helpful? Give feedback.
All reactions