Convert .xlsx to .txt

  • I need to generate a .txt file via a SSRS report. My thought was to export the report as .xlsx then build a SSIS package to convert the file. In theory I thought this would work but I'm unsure how to implement SSIS to convert the file. Any assistance would be greatly appreciated.

    Thank you!

  • SSRS has a built in export to CSV. Would that work to get a text format?

  • I see SSRS only exports as CSV (comma delimited) or CSV (Tab delimited), I actually need tab delimited.

  • Avoid Excel at all cost.

    Export to CSV comma delimited and then convert it with SSIS to tab delimited.

    Or just write a very small .NET app that replaces the commas with tabs.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • Try THIS[/url]

  • This is exactly what I needed. Thank you so much for the info!!!

  • Glad to help.

Viewing 7 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic. Login to reply