Hi I'm looking for some help here. I am new to Azure Data Factory and I need to convert some Excel files to csv, how can I do this?
Asked
Active
Viewed 3,084 times
0
-
1There is no direct support of Excel in ADF. Please see below for more details.https://stackoverflow.com/questions/52514153/how-to-read-files-with-xlsx-and-xls-extension-in-azure-data-factory – AnshuBhola Apr 16 '20 at 07:48
1 Answers
2
As i know,Excel file is not supported by ADF so far,only these formats are supported.
So,you could try some workarounds to process excel files in ADF:
1.Use Databricks Activity to load excel files and convert into csv files,please refer to this case:How to construct Dataframe from a Excel (xls,xlsx) file in Scala Spark?
2.Use Azure Function Activity to convert excel files into csv files,you could choose development language to implement that. Then output the csv files into specific path and use them in the next steps.
3.Try Custom Activity which is actually tasks(for example,execute a Powershell Script) running on the Azure Batch Node.This approach is more flexible and easy to operate.
Jay Gong
- 22,028
- 2
- 18
- 27