<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to remove date and page number from the PDF destination? in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955765#M2518</link>
    <description>&lt;P&gt;I changed the solution settings to Cristina's solution.&lt;/P&gt;</description>
    <pubDate>Fri, 10 Jan 2025 19:07:02 GMT</pubDate>
    <dc:creator>JackieJ_SAS</dc:creator>
    <dc:date>2025-01-10T19:07:02Z</dc:date>
    <item>
      <title>How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955669#M2504</link>
      <description>&lt;P&gt;&amp;nbsp;How to remove date and page number from the PDF destination? I do use : options nonumber nodate; This works for the HTML destination but not for the PDF. In the top upper corner there is the date and page number in the format:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thursday, January 9, 2025 02:19:16 PM 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Below is the code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;ODS PDF FILE="&amp;amp;reports_new.ARIMA_output_MFED_model_stats_yearly.pdf" STARTPAGE=NO;
ods select StationarityTests ParameterEstimates FitStatistics ;			

proc arima data=data_out.SP_sum1 
   plots=(residual(smooth) forecast(forecasts))
  ;
 WHERE date_sas &amp;gt;="01JAN1970"d AND MONTH(date_sas)=&amp;amp;Last_month.;
identify var=Log_of_Valuation_factor  stationarity=(adf) ;
estimate p=1 q=0  method=ml outest=est_sum  /*noint*/;
outlier id=date_sas maxnum=5;
forecast lead=15 interval=year id=date_sas BACK=0 
        out=r_Log_of_Valuation_factor(RENAME=(FORECAST=F_sum STD=STD_sum 
                                 L95=LCI_sum U95=UCI_sum RESIDUAL=R_sum)) 
        ;
run;
ODS PDF CLOSE;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;There is nothing in the log that indicates that the " options nonumber nodate;" were ignored. There is also no errors or warnings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 20:49:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955669#M2504</guid>
      <dc:creator>Yury2</dc:creator>
      <dc:date>2025-01-09T20:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955678#M2505</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/446053"&gt;@Yury2&lt;/a&gt;, you're on the right track, those are indeed the options you'd want to use to remove the date and page number. I don't see the options in the sample code provided so I'm not sure where they were inserted. However, keep in mind that these options have to be set before the PDF is produced. Here is an example I tested that worked:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;option nonumber nodate;
ods pdf file="~/class.pdf";

proc print data=sashelp.class;
run;

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Jan 2025 22:14:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955678#M2505</guid>
      <dc:creator>antonbcristina</dc:creator>
      <dc:date>2025-01-09T22:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955679#M2506</link>
      <description>&lt;P&gt;Thank you for your suggestion. I believed that options nodate nonumber; are global and I submitted them separately and before submitting the above code in Web Studio. That turns out to be a wrong way of doing it because it looks like Web Studio resets these options to default at each submission. I followed your suggestion and submitted these options together with the code and this worked. Again, thank you for your suggestion.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 22:36:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955679#M2506</guid>
      <dc:creator>Yury2</dc:creator>
      <dc:date>2025-01-09T22:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955740#M2513</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/446053"&gt;@Yury2&lt;/a&gt;, that's right&amp;nbsp;in SAS Studio there is wrapper code included with &lt;U&gt;every run&lt;/U&gt;.&amp;nbsp;It includes a global OPTIONS statement with DATE and NUMBER (among other things).&amp;nbsp;You can view this wrapper code in SAS Studio by navigating to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;More Options&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(three dot menu at the top right of the editor window)&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&amp;gt; Open in a browser tab &amp;gt; Log&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My LOG for the program above has this statement at line 14:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;14   options dtreset date number;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 10 Jan 2025 14:16:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955740#M2513</guid>
      <dc:creator>antonbcristina</dc:creator>
      <dc:date>2025-01-10T14:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955751#M2514</link>
      <description>&lt;P&gt;Thank you for your explanation.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 16:02:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955751#M2514</guid>
      <dc:creator>Yury2</dc:creator>
      <dc:date>2025-01-10T16:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955757#M2515</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/446053"&gt;@Yury2&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Glad to see that&amp;nbsp;&lt;A class="trigger-hovercard" href="https://communities.sas.com/t5/user/viewprofilepage/user-id/84234" target="_blank"&gt;antonbcristina&lt;/A&gt;'s solution worked for you. Then it would be fair and help later readers if you marked her most helpful reply as the accepted solution, not your own "thank you" post. Could you please change that? It's very easy: Select her post&amp;nbsp;as the solution after clicking&amp;nbsp;"Not the Solution" in the option menu (see icon below) of the current solution.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="show_option_menu.png" style="width: 155px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/103654i36F099BBF6FDC587/image-size/large?v=v2&amp;amp;px=999" role="button" title="show_option_menu.png" alt="show_option_menu.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;(The same goes for your &lt;A href="https://communities.sas.com/t5/SAS-Software-for-Learning/I-need-to-create-the-subscript-lower-case-letter-n-on-the-SGPLOT/m-p/885255#M1345" target="_blank" rel="noopener"&gt;other thread&lt;/A&gt;, by the way.)&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 17:28:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955757#M2515</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-01-10T17:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955759#M2516</link>
      <description>&lt;P&gt;Hello FreelanceReinh. Thank you for pointing this out. I would be more than happy to do this but when I click on the option menu on the left of the post I do not see the option "Not a Solution". I must be missing something. Please, advise.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 17:55:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955759#M2516</guid>
      <dc:creator>Yury2</dc:creator>
      <dc:date>2025-01-10T17:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955764#M2517</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/446053"&gt;@Yury2&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello FreelanceReinh. Thank you for pointing this out. I would be more than happy to do this but when I click on the option menu on the left of the post I do not see the option "Not a Solution". I must be missing something. Please, advise.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How strange. I've just accepted a solution to a thread I had started and this is how the option menu of the accepted solution looks like (red highlighting added)&lt;FONT face="helvetica"&gt;:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Not_the_Solution.png" style="width: 341px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/103655iC9E64FD4B2D8ABDF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Not_the_Solution.png" alt="Not_the_Solution.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;I'm not sure how long this option is available, but I think that at least today's solutions should have it. [Edit:] Indeed, this menu item is shown even for a solution I accepted more than eight years ago.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 19:12:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955764#M2517</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2025-01-10T19:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955765#M2518</link>
      <description>&lt;P&gt;I changed the solution settings to Cristina's solution.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 19:07:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955765#M2518</guid>
      <dc:creator>JackieJ_SAS</dc:creator>
      <dc:date>2025-01-10T19:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove date and page number from the PDF destination?</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955775#M2520</link>
      <description>&lt;P&gt;Great!. Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 20:17:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/How-to-remove-date-and-page-number-from-the-PDF-destination/m-p/955775#M2520</guid>
      <dc:creator>Yury2</dc:creator>
      <dc:date>2025-01-10T20:17:05Z</dc:date>
    </item>
  </channel>
</rss>

