Hi,
I'm using web-based SAS Studio. When I'm running the program on the book of 'Learning SAS by Example: A Programmer's Guide, Second Edition', I have the different results. The headline and flow options seem not functionary. Can anyone advise what the problem is?
The program:
The should-be report (from the book):
My result:
You're using an older tutorial on newer software so you cannot expect it to align exactly.
First, the version you're training uses LISTING as the default output, which has not been true for over a decade. HTML is the default output now.
If you check the FLOW option in the documentation it explicitly states it ONLY applies to ODS LISTING not to any other destination, so you will not see the same behaviour in your HTML files. HEADLINE has the same limitation noted in the documentation.
If you want to see the effect, write your output to a listing file and check the file or try and find a newer tutorial that works with SAS Studio and HTML.
ods listing file='/home/jz127323/mydemoFile.txt';
proc reprot code goes here;
ods listing close;
@jz127323 wrote:
Hi,
I'm using web-based SAS Studio. When I'm running the program on the book of 'Learning SAS by Example: A Programmer's Guide, Second Edition', I have the different results. The headline and flow options seem not functionary. Can anyone advise what the problem is?
The program:
The should-be report (from the book):
My result:
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Lock in the best rate now before the price increases on April 1.
Ready to level-up your skills? Choose your own adventure.