Reputation: 65
I am designing flow using apache NIFI where I need to convert excel to CSV and then pass it to downstream system. For excel to CSV conversion I am using ConvertExcelToCSVProcessor and facing issue in date conversion where year is getting converted into short format from long i.e. from 'yyyy' to 'yy'.
I have d/m/yyyy format data available in excel
How to avoid such format changing while converting excel to CSV using apache nifi
Upvotes: 0
Views: 1224
Reputation: 98
I am working on a similar project, NiFi Excel to CSV, and the solution found is:
Format Cell Values
to trueUpvotes: 0