View previous topic :: View next topic |
Author |
Message |
chandra Beginner
Joined: 26 Sep 2003 Posts: 130 Topics: 36
|
Posted: Sat Feb 25, 2006 12:46 pm Post subject: SAS - Remove the SAS header form report |
|
|
Hi,
I am writing in the report as follows.
Code: |
PROC PRINTTO PRINT=OUTDD NEW;
***********************************************************************;
** CREATE REPORT **;
***********************************************************************;
OPTIONS LS=133 PS=60 NODATE;
PROC REPORT DATA=FINALREP NOWD SPLIT='*' HEADLINE HEADSKIP;
COLUMN CNTRID CLIENTID SSNTID BEG_DATE END_DATE RUN_DATE;
|
I am getting report as like this
Code: | THE SAS SYSTEM
THIS IS THE REPORT FOR SURRENDER VALUES
|
I want to remove the "THE SAS SYSTEM" message from the report . Can any body help me how to remove this message. _________________ Regards,
Chandra |
|
Back to top |
|
 |
jetson Beginner
Joined: 07 Oct 2005 Posts: 30 Topics: 2 Location: Texas
|
Posted: Sat Feb 25, 2006 8:51 pm Post subject: |
|
|
Are you using the TITLE statement? If so, then TITLE1 should replace "The SAS System" |
|
Back to top |
|
 |
chandra Beginner
Joined: 26 Sep 2003 Posts: 130 Topics: 36
|
Posted: Sun Feb 26, 2006 11:11 pm Post subject: |
|
|
Hi Jetson,
Thanks for the information.
Yes, If I use TITLE statement then it will overide the "THE SAS SYSTEM" message. But I am using LINE statement in Report to print title of the report, in this case how to overide?
Thanks !! _________________ Regards,
Chandra |
|
Back to top |
|
 |
jetson Beginner
Joined: 07 Oct 2005 Posts: 30 Topics: 2 Location: Texas
|
Posted: Mon Feb 27, 2006 6:21 pm Post subject: |
|
|
How about just adding the TITLE parameter with no text: It's working for me...
PROC REPORT DATA=X;
COLUMN A B C;
TITLE;
RUN; |
|
Back to top |
|
 |
chandra Beginner
Joined: 26 Sep 2003 Posts: 130 Topics: 36
|
Posted: Tue Feb 28, 2006 12:05 pm Post subject: |
|
|
Yes It is working !!
Thank you very much Jetson. _________________ Regards,
Chandra |
|
Back to top |
|
 |
|
|