<?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: Selecting specific dates for specific columns with proc report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85459#M256950</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;My dataset is basically structured with a date variable called todate. And other that some variables with the performances from differtent years in different columns.&lt;/P&gt;&lt;P&gt;And i want to pick the date 31/12 in these columns.&lt;/P&gt;&lt;P&gt;So i want to write a statement such as:&lt;/P&gt;&lt;P&gt;Where todate=reportdate in column performance (this is the column for performance for 2013) and todate =mdy(12, 31, 2010) in colmun performance_2010 and todate = mdy(31, 12, 2011) in column performance_2011.&lt;/P&gt;&lt;P&gt;And so on for the other years.&lt;/P&gt;&lt;P&gt;But i am not sure how to write this statement in sas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Sep 2013 07:58:06 GMT</pubDate>
    <dc:creator>Bruce123</dc:creator>
    <dc:date>2013-09-18T07:58:06Z</dc:date>
    <item>
      <title>Selecting specific dates for specific columns with proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85457#M256948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone&lt;/P&gt;&lt;P&gt;I wish to write a code, so it is possible to read the last couple of years performance in a table, so I want to pick the last date in the previous years. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is as follows: &lt;/P&gt;&lt;P&gt;PROC REPORT DATA = Performance_3_Aar HEADLINE NOWINDOWS SPLIT='*' Contents='' /* Removes node entirely */ spanrows /* &lt;SPAN lang="DA" style="font-family: 'Menlo Italic';"&gt;Θ&lt;/SPAN&gt;n stor celle pr. gruppe v&lt;SPAN lang="DA" style="font-family: 'Menlo Italic';"&gt;μ&lt;/SPAN&gt;rdi */&lt;/P&gt;&lt;P&gt;%ReportStyles &lt;/P&gt;&lt;P&gt;STYLE(column) = [background=white cellwidth=75pt]&lt;/P&gt;&lt;P&gt;STYLE(report)= [font_size=0.8 font_face=Times]; /* Makro med report indstillinger */&lt;/P&gt;&lt;P&gt;TITLE FONT=Times HEIGHT=4 Color=Black&amp;nbsp; "Afkast, performance og markedsv&lt;SPAN lang="DA" style="font-family: 'Menlo Italic';"&gt;μ&lt;/SPAN&gt;rdi (pct. og mio. kr.) p&lt;SPAN lang="DA" style="font-family: 'Menlo Italic';"&gt;σ&lt;/SPAN&gt; forvaltere pr. %SYSFUNC(putn(&amp;amp;ReportDate,DDMMYY10.))";&lt;/P&gt;&lt;P&gt;FOOTNOTE FONT=Times HEIGHT=4 Color=Black 'Performance m&lt;SPAN lang="DA" style="font-family: 'Menlo Italic';"&gt;σ&lt;/SPAN&gt;lt ift. forvalter benchmark.';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE ToDate = &amp;amp;ReportDate AND mv &amp;gt;= 0.5 AND (ParentNodeName NE 'Aktier' AND ParentNodeName NE 'Obligationer' AND ParentNodeName NE 'Ejendomme');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COLUMNS OBS ParentNodeName ModelPortfolioName&amp;nbsp; Performance Performance_2010 Performance_2011 Performance_2012;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFINE OBS / GROUP NOPRINT;&lt;/P&gt;&lt;P&gt;DEFINE ParentNodeName / 'Type' GROUP;&lt;/P&gt;&lt;P&gt;DEFINE ModelPortfolioName / 'Forvalter' GROUP STYLE(column) = [cellwidth=/*150pt*/130pt] ORDER=DATA;;&lt;/P&gt;&lt;P&gt;DEFINE Performance / 'Perfor- * mance &lt;SPAN style="font-family: 'Menlo Italic';"&gt;Å&lt;/SPAN&gt;TD' FORMAT=COMMAX20.1 STYLE(column) = [cellwidth=/*50pt*/40pt] style(column) = {font_weight=Bold foreground=cback.};&lt;/P&gt;&lt;P&gt;DEFINE Performance_2010 / 'Performance 2010' FORMAT=COMMAX20.1 STYLE(column) = [cellwidth=/*50pt*/40pt] style(column) = {font_weight=Bold foreground=cback.};&lt;/P&gt;&lt;P&gt;DEFINE Performance_2011 / 'Performance 2011' FORMAT=COMMAX20.1 STYLE(column) = [cellwidth=/*50pt*/40pt] style(column) = {font_weight=Bold foreground=cback.};&lt;/P&gt;&lt;P&gt;DEFINE Performance_2012 / 'Performance 2012' FORMAT=COMMAX20.1 STYLE(column) = [cellwidth=/*50pt*/40pt] style(column) = {font_weight=Bold foreground=cback.};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BREAK BEFORE ParentNodeName / SUPPRESS OL SKIP UL OL STYLE(SUMMARY)= {FONT_WEIGHT=BOLD BACKGROUND=LIGHTGREEN font_size=1}; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the variables Performance_2010, Performance_2011 and Performance_2012 i need to write a statement, so that Sas will read the performance at the date 31/12/2010 in Column A, the date 31/12/2011 in column B and the date 31/12/2012 in column C in the dataset. &lt;/P&gt;&lt;P&gt;I am not sure how I should write this statement.&lt;/P&gt;&lt;P&gt; Can someone help me?&lt;/P&gt;&lt;P&gt;I would really appreciate it &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Sep 2013 21:10:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85457#M256948</guid>
      <dc:creator>Bruce123</dc:creator>
      <dc:date>2013-09-17T21:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting specific dates for specific columns with proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85458#M256949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you explain some more how your original data is structured? I don't quite follow what you want. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 00:05:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85458#M256949</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2013-09-18T00:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting specific dates for specific columns with proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85459#M256950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;My dataset is basically structured with a date variable called todate. And other that some variables with the performances from differtent years in different columns.&lt;/P&gt;&lt;P&gt;And i want to pick the date 31/12 in these columns.&lt;/P&gt;&lt;P&gt;So i want to write a statement such as:&lt;/P&gt;&lt;P&gt;Where todate=reportdate in column performance (this is the column for performance for 2013) and todate =mdy(12, 31, 2010) in colmun performance_2010 and todate = mdy(31, 12, 2011) in column performance_2011.&lt;/P&gt;&lt;P&gt;And so on for the other years.&lt;/P&gt;&lt;P&gt;But i am not sure how to write this statement in sas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 07:58:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85459#M256950</guid>
      <dc:creator>Bruce123</dc:creator>
      <dc:date>2013-09-18T07:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting specific dates for specific columns with proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85460#M256951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bruce123&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One step to approach this is to use Proc TRANSPOSE to restructure your data, and then use some macro logic to build the Proc REPORT code, see sample below.&lt;/P&gt;&lt;DIV style="font-family: Consolas; font-size: 11pt;"&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; have;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;do&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; group = &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"A"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"B"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"C"&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;do&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; year&amp;nbsp; = &lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;2000&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;to&lt;/SPAN&gt; &lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;2013&lt;/STRONG&gt;&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; toDate = mdy(&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;, year);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; performance = ceil( rand(&lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"uniform"&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;) * &lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;1000&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; );&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;output&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;end&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;end&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;format&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; toDate &lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;date9.&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;%macro&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; myReport(startYear=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;2009&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;, endYear=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;2012&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;)&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%local&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; i;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp; proc transpose&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; data=have&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; out=want&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; prefix=performance_&lt;BR /&gt;&amp;nbsp; ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; where year between &amp;amp;startYear and &amp;amp;endYear;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by group;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; id year;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var performance;&lt;BR /&gt;&amp;nbsp; run;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; title &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"Performance from &amp;amp;startYear to &amp;amp;endYear"&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp; proc report data=want nowindows;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; column&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; group&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; performance_&amp;amp;endYear&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%do&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; i = &amp;amp;startYear &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%to&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; (&amp;amp;endYear -&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; performance_&amp;amp;i&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%end&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; define group / display;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; define performance_&amp;amp;endYear / display &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"Performance"&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%do&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; i = &amp;amp;startYear &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%to&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; (&amp;amp;endYear -&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; define performance_&amp;amp;i / display &lt;/SPAN&gt;&lt;SPAN style="color: #008000; background-color: #ffffff;"&gt;/* "Performance &amp;amp;i" */&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%end&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp; run;&lt;BR /&gt;&amp;nbsp; title;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;%mend&lt;/STRONG&gt;&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;BR /&gt;%&lt;/SPAN&gt;&lt;STRONG style="color: #000000; background-color: #ffffff;"&gt;&lt;EM&gt;myReport&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;()&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 08:44:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85460#M256951</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2013-09-18T08:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting specific dates for specific columns with proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85461#M256952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;I will try this as soon as possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2013 12:51:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Selecting-specific-dates-for-specific-columns-with-proc-report/m-p/85461#M256952</guid>
      <dc:creator>Bruce123</dc:creator>
      <dc:date>2013-09-18T12:51:43Z</dc:date>
    </item>
  </channel>
</rss>

