<?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: proc report display date next to the variable name in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598141#M172449</link>
    <description>&lt;P&gt;Or just use a different delimiter when generating the date value.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Oct 2019 14:11:20 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-10-21T14:11:20Z</dc:date>
    <item>
      <title>proc report display date next to the variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598117#M172435</link>
      <description>&lt;P&gt;i want to display the date next to the column name on the report. can;t get the firday date from %let =&amp;nbsp;%sysfunc(weekday("&amp;amp;sysdate"d));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;amp;todaydate1. = 10/21/2019&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc report data=sh1.week_sch&lt;BR /&gt;STYLE(Header)={background=lightgreen foreground=black}&lt;BR /&gt;style(column)={background=White foreground=black}&lt;BR /&gt;style(report)={width=10in};&lt;BR /&gt;column Support_Type Friday_order Saturday_order Sunday_order Monday_order;&lt;BR /&gt;define Support_Type / display ' Schedule';&lt;BR /&gt;define Friday_order / display 'Friday' &amp;amp;todaydate1.;&lt;BR /&gt;define Saturday_order / display 'Saturday' ;&lt;BR /&gt;define Sunday_order / display 'Sunday Support';&lt;BR /&gt;define Monday_order / display 'Monday Support';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Line generated by the macro variable "TODAYDATE1".&lt;BR /&gt;1 10/21/2019&lt;BR /&gt;--&lt;BR /&gt;22&lt;BR /&gt;76&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: a quoted string, ;, ACROSS,&lt;BR /&gt;ANALYSIS, CENTER, COLOR, COMPUTED, CONTENTS, CSS, CV, DESCENDING, DISPLAY,&lt;BR /&gt;EXCLUSIVE, F, FLOW, FORMAT, GROUP, ID, ITEMHELP, LEFT, MAX, MEAN, MEDIAN, MIN,&lt;BR /&gt;MISSING, MLF, MODE, N, NMISS, NOPRINT, NOZERO, ORDER, P1, P10, P20, P25, P30,&lt;BR /&gt;P40, P5, P50, P60, P70, P75, P80, P90, P95, P99, PAGE, PCTN, PCTSUM, PRELOADFMT,&lt;BR /&gt;PROBT, PRT, Q1, Q3, QRANGE, RANGE, RIGHT, SPACING, STD, STDERR, STYLE, SUM,&lt;BR /&gt;SUMWGT, T, USS, VAR, WEIGHT, WGT, WIDTH.&lt;BR /&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the help.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 13:13:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598117#M172435</guid>
      <dc:creator>radha009</dc:creator>
      <dc:date>2019-10-21T13:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: proc report display date next to the variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598129#M172440</link>
      <description>&lt;PRE&gt;%let x= %sysfunc(today(),mmddyy10.);

...........
define Friday_order / display "Friday  &amp;amp;x ";&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Oct 2019 13:37:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598129#M172440</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-10-21T13:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: proc report display date next to the variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598136#M172444</link>
      <description>&lt;P&gt;column name displays as&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Friday 10&lt;BR /&gt;21&lt;BR /&gt;2019&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 13:49:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598136#M172444</guid>
      <dc:creator>radha009</dc:creator>
      <dc:date>2019-10-21T13:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: proc report display date next to the variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598140#M172448</link>
      <description>"/" is the default split character in proc report. That's why the date is printed on multiple lines.&lt;BR /&gt;Try this to see if that works for you: proc report data=sh1.week_sch&lt;BR /&gt;STYLE(Header)={background=lightgreen foreground=black}&lt;BR /&gt;style(column)={background=White foreground=black}&lt;BR /&gt;style(report)={width=10in} split='~';</description>
      <pubDate>Mon, 21 Oct 2019 14:09:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598140#M172448</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2019-10-21T14:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: proc report display date next to the variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598141#M172449</link>
      <description>&lt;P&gt;Or just use a different delimiter when generating the date value.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 14:11:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598141#M172449</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-10-21T14:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: proc report display date next to the variable name</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598144#M172452</link>
      <description>&lt;P&gt;How to get the friday date of this week? in %sysfunc&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 14:16:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-report-display-date-next-to-the-variable-name/m-p/598144#M172452</guid>
      <dc:creator>radha009</dc:creator>
      <dc:date>2019-10-21T14:16:24Z</dc:date>
    </item>
  </channel>
</rss>

