BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Becca
Calcite | Level 5

I have a few data sets that I have merged together and manipulated with PROC REPORT. I am struggling with two things

  • I can't seem to figure out how to get a 0 input for missing/blank data
  • I need to export this data into notepad as a txt file

Any help/hints would be great!

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

options missing = '0'; ?

View solution in original post

3 REPLIES 3
SASKiwi
PROC Star

options missing = '0'; ?

Becca
Calcite | Level 5

Thanks! That worked like a charm! 

Cynthia_sas
Diamond | Level 26

Hi:

  When you say that you "need to export this data into notepad as a txt file", do you mean you need to export ONLY the data or you need a PROC REPORT type report in a TEXT file. You can simply use ODS LISTING FILE= if you want the PROC REPORT output in Notepad/TXT file, however, this will send your SAS titles to the TXT file too. Something like the program below. Otherwise, you could do something with a DATA Step program.

Cynthia

ods _all_ close;

ods listing file='c:\temp\myreport.txt';

options nodate number pageno=1;

 

proc report data=sashelp.class ls=80 ps=60;

title 'This is the Title';

column name sex age height weight;

define name / order;

define sex / display f=$3.;

define age / display;

define height / display;

define weight / display;

run;

ods listing close;


save_report_as_txt.png

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1901 views
  • 0 likes
  • 3 in conversation