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 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 737 views
  • 0 likes
  • 4 in conversation