How can I convert output (.lst) file to xlsx format?
Thanks.
Whilst I totally agree with @Reeza and @Kurt_Bremser, create your output from SAS using the tools to create Excel files, you can import text (which is what a .lst file is) into Excel and process it if you really have to. Open Excel, goto Data->From Text, select your file (as its not .txt you will need to select All Files *.* in the filetypes box). You will then see the Text Import Wizard, where you can set various options, delimiters, widths etc.
Do note, that .lst files are just raw text, so there would be no formatting, and strcuturally it isn't the best to deal with. Better to generate a proper report from SAS.
You can't directly.
If you're on SAS 9.4 though you can use ODS EXCEL to create an Excel file.
You add
ods excel file='file path/name.xlsx;
your sas code;
ods excel close;
This will produce an excel file with your results. You can create PDF or RTF/Word files in a similar manner.
Thanks Reza.
When I run sas code only, it works fine. When I add your suggested lines at the beginning and end, I get error messages. Possibly I need to work on it a bit more.
Also have a look at ODS TAGSETS.EXCELXP. You get XML output that is properly read by Excel and can contain advanced formatting.
Whilst I totally agree with @Reeza and @Kurt_Bremser, create your output from SAS using the tools to create Excel files, you can import text (which is what a .lst file is) into Excel and process it if you really have to. Open Excel, goto Data->From Text, select your file (as its not .txt you will need to select All Files *.* in the filetypes box). You will then see the Text Import Wizard, where you can set various options, delimiters, widths etc.
Do note, that .lst files are just raw text, so there would be no formatting, and strcuturally it isn't the best to deal with. Better to generate a proper report from SAS.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.