How can I convert prnx file to excel?

I have sales reports with a .prnx extension. I want convert them to Excel format. How can I do this?

2

2 Answers

PRNX is the format of the Print Document generated by the Developer Express' ExpressPrinting System. That file format can contain any arbitrary data.

You can't convert it to Excel. Excel is for storing tabular data. PRNX does not store this kind of data. There would be no concept of a direct conversion. The data you are printing may just happen to look like a table but PRNX is too generic.

DevExpress Printing System can export PDF and RTF files instead of PRNX. What I suggest you do is export an RTF document, open it in Word, then copy and paste the "table" part of the document and paste it into an Excel spreadsheet. Even this may not work, it depends on how your source "table" happens to be formatted.

A better solution would be to do it right from the beginning. If you are using custom software that uses DevExpress printing to print documents. If you want to export Excel documents, you need to build that into the application elsewhere, and not try to hack it off the printing system.

If you've just obtained a PRNX from somebody else, then you need to ask them if their software can export Excel instead.

If i'm not mistaked these are files created by Devexpress' printing system, for more information you can read here, although i believe you will need a valid license to export these files to another format (or if this is a one-off, you may use the trial).

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like