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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

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