How to convert .xls file to .xlsx file in ssis. My requirement is to export the user defined stored procedure in to excel destination. This is my control flow task:
[Execute SQL Task (Drop excel table)]-->[Execute SQL Task (create excel table)]-->[Data flow Task]
My Data flow task is :
[OLEDB Source (to execute the stored procedure)]-->[Data conversion(convert to unicode)]--> [Excel Destination]
When I do this, the excel destination table is stored as .xls file. I need to convert to .xlsx file. I have excel 2013 installed on my server but file saved as .xls. Please help me to write a code to convert xls files to xlsx file using SSIS.
Thank you for your time and help !