<?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 format a macro variable to mmddyy10. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473847#M121645</link>
    <description>&lt;P&gt;because you missed the double quotes in the call symput statement&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let str=%sysfunc(intnx(quarter, '01JAN2017'd, 8, end),mmddyy10.);&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;call symput('dt1',&lt;FONT color="#339966"&gt;"&amp;amp;str");&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;run;&lt;BR /&gt;%put &amp;amp;dt1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;786 %let str=%sysfunc(intnx(quarter, '01JAN2017'd, 8, end),mmddyy10.);&lt;BR /&gt;787&lt;BR /&gt;788 data _null_;&lt;BR /&gt;789 call symput('dt1',"&amp;amp;str");&lt;BR /&gt;790 run;&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;791 %put &amp;amp;dt1;&lt;BR /&gt;03/31/2019&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Jun 2018 18:00:44 GMT</pubDate>
    <dc:creator>novinosrin</dc:creator>
    <dc:date>2018-06-27T18:00:44Z</dc:date>
    <item>
      <title>How to format a macro variable to mmddyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473826#M121629</link>
      <description>&lt;P&gt;Hello,&amp;nbsp; I am trying to format the value of &amp;amp;str (which resolves to 21639) below. I have tried various inputc, putc, inputn, putn variations&amp;nbsp; but can't seem to come up with a macro variable with the value of 12/31/2019.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;code below ****************************&lt;/P&gt;
&lt;P&gt;%let str=intnx('quarter',intnx('quarter', '01JAN2017'd, 5, "sameday"), 3, "end");&lt;/P&gt;
&lt;P&gt;data _null_;&lt;BR /&gt;call symputx('dt', &amp;amp;str,'G');&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;%put dt=&amp;amp;dt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;* a couple attempts of formatting the value;&lt;/P&gt;
&lt;P&gt;data _null_;&lt;BR /&gt;call symputx('dt1', %sysfunc(inputn(&amp;amp;str, 6.), mmddyy10.),'G');&lt;BR /&gt;call symputx('dt2', %sysfunc(21639,mmddyy10.),'G'));&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;%put dt1=&amp;amp;dt1;&lt;BR /&gt;%put dt2=&amp;amp;dt2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;log **************************************************&lt;/P&gt;
&lt;P&gt;17 %let str=intnx('quarter',intnx('quarter', '01JAN2017'd, 5, "sameday"), 3, "end");&lt;BR /&gt;18 &lt;BR /&gt;19 data _null_;&lt;BR /&gt;20 call symputx('dt', &amp;amp;str,'G');&lt;BR /&gt;21 run;&lt;/P&gt;
&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 0.00 seconds&lt;BR /&gt; cpu time 0.00 seconds&lt;/P&gt;
&lt;P&gt;22 &lt;BR /&gt;23 %put dt=&amp;amp;dt;&lt;BR /&gt;dt=21639&lt;BR /&gt;24 &lt;BR /&gt;25 data _null_;&lt;BR /&gt;26 call symputx('dt1', %sysfunc(inputn(&amp;amp;str, 6.), mmddyy10.),'G');&lt;BR /&gt;WARNING: Argument 1 to function INPUTN referenced by the %SYSFUNC or %QSYSFUNC macro function is out of range.&lt;BR /&gt;NOTE: Mathematical operations could not be performed during %SYSFUNC function execution. The result of the operations have been set &lt;BR /&gt; to a missing value.&lt;BR /&gt;27 call symputx('dt2', %sysfunc(21639,mmddyy10.),'G'));&lt;BR /&gt;ERROR: Function name missing in %SYSFUNC or %QSYSFUNC macro function reference.&lt;BR /&gt;27 call symputx('dt2', %sysfunc(21639,mmddyy10.),'G'));&lt;BR /&gt; _&lt;BR /&gt; 159&lt;BR /&gt;ERROR 159-185: Null parameters for SYMPUTX are invalid.&lt;/P&gt;
&lt;P&gt;27 call symputx('dt2', %sysfunc(21639,mmddyy10.),'G'));&lt;BR /&gt; _________&lt;BR /&gt; 386&lt;BR /&gt;ERROR 386-185: Expecting an arithmetic expression.&lt;/P&gt;
&lt;P&gt;27 call symputx('dt2', %sysfunc(21639,mmddyy10.),'G'));&lt;BR /&gt; _________&lt;BR /&gt; 201&lt;BR /&gt;2 The SAS System 10:40 Wednesday, June 27, 2018&lt;/P&gt;
&lt;P&gt;ERROR 201-322: The option is not recognized and will be ignored.&lt;/P&gt;
&lt;P&gt;27 call symputx('dt2', %sysfunc(21639,mmddyy10.),'G'));&lt;BR /&gt; _________&lt;BR /&gt; 76&lt;BR /&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;
&lt;P&gt;28 &lt;BR /&gt;29 run;&lt;/P&gt;
&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 0.00 seconds&lt;BR /&gt; cpu time 0.00 seconds&lt;/P&gt;
&lt;P&gt;30 &lt;BR /&gt;31 %put dt1=&amp;amp;dt1;&lt;BR /&gt;dt1=.&lt;BR /&gt;32 %put dt2=&amp;amp;dt2;&lt;BR /&gt;dt2=0.0000479317&lt;BR /&gt;33 &lt;BR /&gt;34&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 17:03:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473826#M121629</guid>
      <dc:creator>Julie4435637</dc:creator>
      <dc:date>2018-06-27T17:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a macro variable to mmddyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473830#M121633</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let str=%sysfunc(intnx(quarter,%sysfunc(intnx(quarter, '01JAN2017'd, 5, sameday)), 3, end),mmddyy10.);

%put &amp;amp;str;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Jun 2018 17:11:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473830#M121633</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-06-27T17:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a macro variable to mmddyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473834#M121637</link>
      <description>&lt;P&gt;Also just wondering the purpose of such long expression?&lt;/P&gt;&lt;P&gt;Coz the below two produces the same result--&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*lenghty version*/
%let str=%sysfunc(intnx(quarter,%sysfunc(intnx(quarter, '01JAN2017'd, 5, sameday)), 3, end),mmddyy10.);

%put &amp;amp;str;
/*short version*/
%let k=%sysfunc(intnx(quarter, '01JAN2017'd, 8, end),mmddyy10.);
%put &amp;amp;k;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;Log:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;753 /*lenghty version*/&lt;BR /&gt;754 %let str=%sysfunc(intnx(quarter,%sysfunc(intnx(quarter, '01JAN2017'd,&lt;BR /&gt;754! 5, sameday)), 3, end),mmddyy10.);&lt;BR /&gt;755&lt;BR /&gt;756 %put &amp;amp;str;&lt;BR /&gt;03/31/2019&lt;BR /&gt;757 /*short version*/&lt;BR /&gt;758 %let k=%sysfunc(intnx(quarter, '01JAN2017'd, 8, end),mmddyy10.);&lt;BR /&gt;759 %put &amp;amp;k;&lt;BR /&gt;03/31/2019&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 17:22:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473834#M121637</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-06-27T17:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a macro variable to mmddyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473838#M121639</link>
      <description>&lt;P&gt;Is there an actual reason to use the double intnx instead of&lt;/P&gt;
&lt;P&gt;&lt;FONT face="SAS Monospace" size="2"&gt;intnx(&lt;/FONT&gt;&lt;FONT color="#800080" face="SAS Monospace" size="2"&gt;'quarter'&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#008080" face="SAS Monospace" size="2"&gt;'01JAN2017'd&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#008080" face="SAS Monospace" size="2"&gt;8&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;, &lt;/FONT&gt;&lt;FONT color="#800080" face="SAS Monospace" size="2"&gt;"end"&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="SAS Monospace" size="2"&gt;If you are using some other parameters it might be better to just add them instead of that double intnx.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="SAS Monospace" size="2"&gt;It might be needed if you were using different intervals but calendar quarter is a calendar quarter and end will be the same.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 17:28:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473838#M121639</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-06-27T17:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a macro variable to mmddyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473845#M121644</link>
      <description>&lt;P&gt;You are right - the statement was more complicated than it needed to be.&amp;nbsp; I did shorten it and tried it out.&amp;nbsp; Why do I get different results when I assign the value to the macro variable using a symput vs %let?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%let str=%sysfunc(intnx(quarter, '01JAN2017'd, 8, end),mmddyy10.);&lt;/P&gt;
&lt;P&gt;data _null_;&lt;BR /&gt;call symput('dt1',&amp;amp;str);&lt;BR /&gt;run;&lt;BR /&gt;%put &amp;amp;dt1;&lt;/P&gt;
&lt;P&gt;%let dt2=&amp;amp;str;&lt;BR /&gt;%put &amp;amp;dt2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;log ***************&lt;/P&gt;
&lt;P&gt;17 %let str=%sysfunc(intnx(quarter, '01JAN2017'd, 8, end),mmddyy10.);&lt;BR /&gt;18 &lt;BR /&gt;19 data _null_;&lt;BR /&gt;20 call symput('dt1',&amp;amp;str);&lt;BR /&gt;21 run;&lt;/P&gt;
&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;BR /&gt; 20:6 &lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt; real time 0.00 seconds&lt;BR /&gt; cpu time 0.00 seconds&lt;/P&gt;
&lt;P&gt;22 %put &amp;amp;dt1;&lt;BR /&gt;0.0000479317&lt;BR /&gt;23 &lt;BR /&gt;24 %let dt2=&amp;amp;str;&lt;BR /&gt;25 %put &amp;amp;dt2;&lt;BR /&gt;03/31/2019&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 17:48:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473845#M121644</guid>
      <dc:creator>Julie4435637</dc:creator>
      <dc:date>2018-06-27T17:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a macro variable to mmddyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473847#M121645</link>
      <description>&lt;P&gt;because you missed the double quotes in the call symput statement&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%let str=%sysfunc(intnx(quarter, '01JAN2017'd, 8, end),mmddyy10.);&lt;/P&gt;&lt;P&gt;data _null_;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;call symput('dt1',&lt;FONT color="#339966"&gt;"&amp;amp;str");&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt;run;&lt;BR /&gt;%put &amp;amp;dt1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;786 %let str=%sysfunc(intnx(quarter, '01JAN2017'd, 8, end),mmddyy10.);&lt;BR /&gt;787&lt;BR /&gt;788 data _null_;&lt;BR /&gt;789 call symput('dt1',"&amp;amp;str");&lt;BR /&gt;790 run;&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;791 %put &amp;amp;dt1;&lt;BR /&gt;03/31/2019&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jun 2018 18:00:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473847#M121645</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-06-27T18:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a macro variable to mmddyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473849#M121647</link>
      <description>&lt;P&gt;Julie, a value of 21639 converts to day 03/31/2019. It appears that your "%let str" statement might need a value of 6 in the outer intnx call which will provide a value of 21914 and will resolve to 12/31/2019.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code isn't pretty, but I think it illustrates the concept adequately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans Typewriter" size="1"&gt;options&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Lucida Sans Typewriter" size="1"&gt;symbolgen&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans Typewriter" size="1"&gt;%let&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt; str1=intnx('quarter',intnx('quarter', '01JAN2017'd, 5, "sameday"), 3, "end");&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans Typewriter" size="1"&gt;%let&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt; str2=intnx('quarter',intnx('quarter', '01JAN2017'd, 5, "sameday"), 6, "end");&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00ffff" face="Lucida Sans Typewriter" size="1"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Lucida Sans Typewriter" size="1"&gt;_null_&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans Typewriter" size="1"&gt;call&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt; symputx(&lt;/FONT&gt;&lt;FONT color="#800080" face="Lucida Sans Typewriter" size="1"&gt;'dt1'&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;, &amp;amp;str1,&lt;/FONT&gt;&lt;FONT color="#800080" face="Lucida Sans Typewriter" size="1"&gt;'G'&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans Typewriter" size="1"&gt;call&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt; symputx(&lt;/FONT&gt;&lt;FONT color="#800080" face="Lucida Sans Typewriter" size="1"&gt;'dt2'&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;, &amp;amp;str2,&lt;/FONT&gt;&lt;FONT color="#800080" face="Lucida Sans Typewriter" size="1"&gt;'G'&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00ffff" face="Lucida Sans Typewriter" size="1"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00ffff" face="Lucida Sans Typewriter" size="1"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt; temp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans Typewriter" size="1"&gt;format&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt; mydt1 mydt2 &lt;/FONT&gt;&lt;FONT color="#008080" face="Lucida Sans Typewriter" size="1"&gt;mmddyy10.&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;mydt1=&amp;amp;dt1;&lt;/P&gt;&lt;P&gt;mydt2=&amp;amp;dt2;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00ffff" face="Lucida Sans Typewriter" size="1"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Lucida Sans Typewriter" size="1"&gt;%put&lt;/FONT&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt; _all_;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#00ffff" face="Lucida Sans Typewriter" size="1"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Lucida Sans Typewriter" size="1"&gt;print&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#00ffff" face="Lucida Sans Typewriter" size="1"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Lucida Sans Typewriter" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;Obs&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mydt1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mydt2 &lt;TABLE cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;03/31/2019&lt;/TD&gt;&lt;TD&gt;12/31/2019&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 27 Jun 2018 18:03:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473849#M121647</guid>
      <dc:creator>pb82477</dc:creator>
      <dc:date>2018-06-27T18:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to format a macro variable to mmddyy10.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473854#M121650</link>
      <description>Thank you.</description>
      <pubDate>Wed, 27 Jun 2018 18:10:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-format-a-macro-variable-to-mmddyy10/m-p/473854#M121650</guid>
      <dc:creator>Julie4435637</dc:creator>
      <dc:date>2018-06-27T18:10:57Z</dc:date>
    </item>
  </channel>
</rss>

