BookmarkSubscribeRSS Feed
a_tixe
Calcite | Level 5

Hi,

I have an issue with the title and footnote statement.

I have this code:

options nodate nonumber orientation=landscape;

ODS ESCAPECHAR="^";

TITLE;

FOOTNOTE;

ODS PDF FILE="&pathName." style=UNI startpage = yes;

    TITLE1  '^S={preimage="&PreImage.?width=515.6pt&height=55pt"}';

    TITLE2 ;

    TITLE3 "&reportTitle. &entity.";

    TITLE4 ;

    TITLE5 "&valdate.";

    proc report data=lib_tmp.&tableName. nowd style(report)={outputwidth=100%};

        column     &orderedvars.;

       

        COMPUTE %sysfunc(scan("&orderedvars.",1," ")); /* FIRST LINE */

             if mod(monotonic(),2)=0 then call define(_row_,'style','style=[background=#DDDDDD]');

                             else call define(_row_,'style','style=[background=white]');

        ENDCOMP;

    run;

ods _all_ close;


and produce as result an pdf report with an image in the position "title1", but if I add the follow code:

FOOTNOTE1 "Page ^{thispage} of ^{lastpage}";

in the pdf report result there isn't the image in the TITLE1 and there is the correct  FOOTNOTE1 like "Page 1 of 26".

Do you have an idea for solve this issue?

1 REPLY 1

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1 reply
  • 915 views
  • 0 likes
  • 2 in conversation