<?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 slash (/) missing on proc report result in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885124#M43323</link>
    <description>&lt;A href="https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/td-p/885016" target="_blank"&gt;https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/td-p/885016&lt;/A&gt;</description>
    <pubDate>Mon, 17 Jul 2023 17:31:07 GMT</pubDate>
    <dc:creator>Daily1</dc:creator>
    <dc:date>2023-07-17T17:31:07Z</dc:date>
    <item>
      <title>proc report slash (/) missing on proc report result</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885016#M43320</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data three;
	infile datalines;
	input a $ b $ x $ y $ z $ m $;
return;
datalines;
A/A 21 22 23 24 25
AB 26 27 28 29 30
;
run;

proc report data=three;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;"/" is missing on my result. pls help. Thanks&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i want this type output but i need A/A on result. why / is missing on result?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Daily1_0-1689595426277.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85815iD5691A87209FF81A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Daily1_0-1689595426277.png" alt="Daily1_0-1689595426277.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 12:06:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885016#M43320</guid>
      <dc:creator>Daily1</dc:creator>
      <dc:date>2023-07-17T12:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: proc report slash (/) missing on proc report result</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885017#M43321</link>
      <description>&lt;P&gt;When I run your code, I see the slash in the PROC REPORT output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please show us a screen capture of what you are seeing. Please use the "Insert Photos" icon to include your screen capture in your reply. Do NOT attach files. Also, what SAS interface are you using (Base SAS, Enterprise Guide, SAS Studio, other) and what output destination are you using?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 11:35:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885017#M43321</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-07-17T11:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: proc report slash (/) missing on proc report result</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885022#M43322</link>
      <description>&lt;P&gt;Tell PROC REPORT to use a different character as the SPLIT character.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data three;
	infile datalines;
	input a $ b  x $ y $ z $ m $;
return;
datalines;
A/A 21 22 23 24 25
AB 26 27 28 29 30
;

proc report data=three split='|';
  column  a,(b );
  define a / across;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 17 Jul 2023 11:47:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885022#M43322</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-07-17T11:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: proc report slash (/) missing on proc report result</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885124#M43323</link>
      <description>&lt;A href="https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/td-p/885016" target="_blank"&gt;https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/td-p/885016&lt;/A&gt;</description>
      <pubDate>Mon, 17 Jul 2023 17:31:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885124#M43323</guid>
      <dc:creator>Daily1</dc:creator>
      <dc:date>2023-07-17T17:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: proc report slash (/) missing on proc report result</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885130#M43324</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Solution:&lt;BR /&gt;&lt;BR /&gt;data three;
   infile datalines;
   input a $ b $ x $ y $ z $ m $;
datalines;
A/A 21 22 23 24 25
AB 26 27 28 29 30
;
run;

proc report data=three nowd;
   column a b x y z m;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Daily1_0-1689615493654.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85853iB24F230B8440018D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Daily1_0-1689615493654.png" alt="Daily1_0-1689615493654.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 17:38:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885130#M43324</guid>
      <dc:creator>Daily1</dc:creator>
      <dc:date>2023-07-17T17:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: proc report slash (/) missing on proc report result</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885143#M43325</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Another character specification that can cause this behavior is ODS ESCAPECHAR, as shown below in #1 example:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1689617880998.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85858i1B733214DC1BA501/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1689617880998.png" alt="Cynthia_sas_0-1689617880998.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;As shown in the #2 report, with ODS ESCAPECHAR set to a different character, the slash in the data shows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Interestingly, when I have SPLIT='/' I do see the A/A in the data cell:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_1-1689618091049.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/85859iBF9DEA9371E242D4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_1-1689618091049.png" alt="Cynthia_sas_1-1689618091049.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Running SAS 9.4M7.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 18:22:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885143#M43325</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-07-17T18:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: proc report slash (/) missing on proc report result</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885144#M43326</link>
      <description>&lt;P&gt;To have PROC REPORT recognize split char in DATA (as opposed to HEADERS) you have to&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Define the column to use the FLOW option.&lt;/LI&gt;
&lt;LI&gt;Direct the output to the LISTING destination instead of ODS.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 18:36:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885144#M43326</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-07-17T18:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: proc report slash (/) missing on proc report result</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885179#M43327</link>
      <description>Hi, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;:&lt;BR /&gt;  That's correct; however the original posting showed HTML output not LISTING, and the code showed  no change to the SPLIT= option, so the default was in effect. I haven't had a chance to test the original code in EG yet, but I suspect it won't make a difference.&lt;BR /&gt; Thanks for the clarification.&lt;BR /&gt;Cynthia</description>
      <pubDate>Mon, 17 Jul 2023 21:54:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-report-slash-missing-on-proc-report-result/m-p/885179#M43327</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2023-07-17T21:54:02Z</dc:date>
    </item>
  </channel>
</rss>

