Reputation:
I am writting .NET application that generates reports in docx. One of the last requirements I've got was - generate also these reports in xlsx format. So, is there any simple way to convert docx to xlsx format? I haven't found any solution or utility/library. One of the ideas was to use Microsoft.Office.Interop Copy/Paste methods, but I don't know if it helps :)
Upvotes: 2
Views: 5499
Reputation: 65461
We have used a MS tool that allows you to work with Office documents as if they were xml:
Open XML SDK 2.0 for Microsoft Office
This had the following benefits compared with interop:
Upvotes: 1