BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
wxzhai
Obsidian | Level 7

Hi, I'm practicing the following program on the book of learning sas through examples on SAS Studio. But the result is not as demonstrated on the book, there's no line wrapping, no expected column widths... I dont know why? Thanks in advance!

 

Program 15.7: Demonstrating the FLOW Option with PROC REPORT
title "Demonstrating the FLOW Option";
proc report data=Learn.Medical headline
split=' ' ls=74;
column Patno VisitDate DX HR Weight Comment;
define Patno / "Patient Number" width=7;
define VisitDate / "Visit Date" width=9 format=date9.;
define DX / "DX Code" width=4 right;
define HR / "Heart Rate" width=6;
define Weight / width=6;
define Comment / width=30 flow;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

For some unknown reason SAS does not have any feature in SAS/Studio to display normal output files.  Only the LOG and ODS outputs.

 

Write the output to a file and then open it yourself.

ods listing file="~/listing.txt";

You could add a step to dump the file to the log.

data _null_;
  infile "~/listing.txt";
  input;
  put _infile_;
run;

View solution in original post

6 REPLIES 6
ballardw
Super User

Flow and width options only apply to the LISTING output destination.

For example from the on line help:

FLOW

wraps the value of a character variable in its column. The FLOW option honors the split character. If the text contains no split character, then PROC REPORT tries to split text at a blank.

Restriction This option affects only the LISTING output. It has no affect on other ODS output.

Unless you have an ODS LISTING, or have changed the output to listing you will not see the Flow behavior in HTML, RTF, PDF, EXCEL or any other ODS destination.

 

Because Proc Report has been around a long time it has many options involved for sending output essentially direct to line printers or text files that emulate line priter behavior, which is ODS LISTING. If you do not include an option to send the output to LISTING you will not see any change in output.

 


@wxzhai wrote:

Hi, I'm practicing the following program on the book of learning sas through examples on SAS Studio. But the result is not as demonstrated on the book, there's no line wrapping, no expected column widths... I dont know why? Thanks in advance!

 

Program 15.7: Demonstrating the FLOW Option with PROC REPORT
title "Demonstrating the FLOW Option";
proc report data=Learn.Medical headline
split=' ' ls=74;
column Patno VisitDate DX HR Weight Comment;
define Patno / "Patient Number" width=7;
define VisitDate / "Visit Date" width=9 format=date9.;
define DX / "DX Code" width=4 right;
define HR / "Heart Rate" width=6;
define Weight / width=6;
define Comment / width=30 flow;
run;


 

wxzhai
Obsidian | Level 7

Thank you!

Do you mean something like this:

 

ods listing;

title "Demonstrating the FLOW Option";
proc report data=Learn.Medical headline
split=' ' ls=74;
column Patno VisitDate DX HR Weight Comment;
define Patno / "Patient Number" width=7;
define VisitDate / "Visit Date" width=9 format=date9.;
define DX / "DX Code" width=4 right;
define HR / "Heart Rate" width=6;
define Weight / width=6;
define Comment / width=30 flow;
run;

ballardw
Super User

Yes but you will have to look to the listing output window, not the typical "results" window.

wxzhai
Obsidian | Level 7

But I can't see the listing window you said. The following is what my SAS studio shows:

wxzhai_0-1696950991403.png

 

Tom
Super User Tom
Super User

For some unknown reason SAS does not have any feature in SAS/Studio to display normal output files.  Only the LOG and ODS outputs.

 

Write the output to a file and then open it yourself.

ods listing file="~/listing.txt";

You could add a step to dump the file to the log.

data _null_;
  infile "~/listing.txt";
  input;
  put _infile_;
run;
wxzhai
Obsidian | Level 7

Thank you so much! It worked. 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 933 views
  • 1 like
  • 3 in conversation