LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (May 2009, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 22 May 2009 05:10:06 -0400
Reply-To:     Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject:      Re: how to remove '1' on the first column of the output

looking at the list, that seems to be not the problem. That list looks like a PROC PRINT output (?). If it is one, you could use the option NOOBS or SPLIT="*".

proc print data=sashelp.class NOOBS; run;

with SPLIT= you can give a split character which is used to split long labels as column header.

Gerhard

On Wed, 20 May 2009 11:02:49 -0700, Terjeson, Mark <Mterjeson@RUSSELL.COM> wrote:

>Hi Yi, > >Looks familiar. > >Are you on MVS or Z/OS, etc.? >(i.e. which operating system?) > >e.g. >On the mainframe there is a single character >first column for paging that you cannot edit. >It has been a while since I was on MVS and our >group was pretty fluent with MVS and I don't >recall that we found a way to get rid of it. > > >Mark > > >-----Original Message----- >From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Yi >Sent: Wednesday, May 20, 2009 10:44 AM >To: SAS-L@LISTSERV.UGA.EDU >Subject: how to remove '1' on the first column of the output > >There is always a '1' on the first column of the saslist first row. >Is there any option to remove it?? Thanks. > >1 Obs Name Sex Age Height Weight >-- >(this is it) > > 1 Alfred M 14 69.0 112.5 > 2 Alice F 13 56.5 84.0


Back to: Top of message | Previous page | Main SAS-L page