BookmarkSubscribeRSS Feed
nash_sas
Fluorite | Level 6

Below is the code with title statement, but title is not appearing in PDF

ods pdf file = "test.pdf";

proc sgpanel data=sashelp.prdsale;
  title "Yearly Sales by Product";
  panelby year / novarname columns=1;
  hbar product / response=actual;
run;
title;
ods pdf close;

3 REPLIES 3
PGStats
Opal | Level 21

It does for me. I'm using version 9.3 on Win7-32.

PG
ballardw
Super User

Also shows for me using SAS 9.2.3 on Win7.

Long shot, try:

goptions reset=all;

I have had occasional odd interactions from settings in goptions that can persist from session to session unawares which I didn't expect from the SG graphics procedures.

Another thing to try if your default style is not a SAS supplied style to specify one of the standard Styles from SAS.

urbanix_Oslo
Fluorite | Level 6

I have the exact same problem. I'm running SAS 9.2 on Windows 7. The problem was reproduced using your example code, with and without the inclusion of "goptions reset=all;".

sas-innovate-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Early bird rate extended! Save $200 when you sign up by March 31.

Register now!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 874 views
  • 0 likes
  • 4 in conversation