BookmarkSubscribeRSS Feed
Jaymin
Calcite | Level 5

Hi,

 

I have 23 columns in one Listing and wanted to create a .rtf file listing. I want to manually assign the columns on each page. But, could't find the way. Please guide me. 

 

So, the question is how to assign columns to each page, for example page 1 = col1-col7 then page 2= col8-col12 then page3= col13-col20 and page4= col21-23.

1 REPLY 1
ballardw
Super User

Real generic:

 

proc print data=have;
   var col1 - col7;
run;
proc print data=have;
   var col8 - col12;
run;

repeat as needed. You likely will need to spell out your variables.

 

Note: IF you have any record identfier that should be the first variable(s) in any proc print. Otherwise "reading" this stuff will quickly become a chore. Also if there are enough rows of data to go to the next page it gets worse. You may need to change papersize option or use an ODS style with smaller fonts to fit all the rows on a single page.

 

I know I am not terribly interested in reading data in this format and I've done that as this is the ancient, as in 1987, Lotus 123 PRN format.

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 1 reply
  • 579 views
  • 0 likes
  • 2 in conversation