<?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: Not getting desired output in table alignment. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Not-getting-desired-output-in-table-alignment/m-p/906940#M40547</link>
    <description>&lt;P&gt;Because your raw data is not aligned in columns, you need to use "Modified List Input" with the : and &amp;amp; modifiers. Please read about the meaning of &amp;amp; and : in this case&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmmvacdc/9.4/lestmtsref/n0lrz3gb7m9e4rn137op544ddg0v.htm#p1wk2kecsf6iz8n1ufug4i5pg6id" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmmvacdc/9.4/lestmtsref/n0lrz3gb7m9e4rn137op544ddg0v.htm#p1wk2kecsf6iz8n1ufug4i5pg6id&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, you need two consecutive blanks after the treatment_type, which indicates that SAS will allow one blank in treatment_type but when it comes to two consecutive blanks, it stops reading treatment_type and starts reading the next variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data treatment_details;
input patient_id 1-5
treatment_type &amp;amp; :$20.
start_date :mmddyy10.
end_date :mmddyy10.
response &amp;amp; :$20.;
datalines;
00001 Chemotherapy  01/01/2023 03/31/2023 Partial Response
00002 Immunotherapy  02/15/2023 05/15/2023 Complete Response
00003 Targeted Therapy  03/01/2023 06/30/2023 Stable Disease
00004 Chemotherapy  04/10/2023 07/10/2023 Progressive Disease
00005 Immunotherapy  05/20/2023 08/20/2023 Partial Response
00006 Chemotherapy  06/01/2023 09/30/2023 Complete Response
00007 Targeted Therapy  07/15/2023 10/15/2023 Stable Disease
00008 Chemotherapy  08/10/2023 11/10/2023 Progressive Disease
00009 Immunotherapy  09/20/2023 12/20/2023 Partial Response
00010 Targeted Therapy  10/01/2023 01/31/2024 Complete Response
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 08 Dec 2023 10:51:37 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2023-12-08T10:51:37Z</dc:date>
    <item>
      <title>Not getting desired output in table alignment.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Not-getting-desired-output-in-table-alignment/m-p/906939#M40546</link>
      <description>&lt;P&gt;Data project.treatment_details;&lt;BR /&gt;input patient_id 1-5&lt;BR /&gt;treatment_type $6-25&lt;BR /&gt;start_date mmddyy10.&lt;BR /&gt;end_date mmddyy10.&lt;BR /&gt;response $26-35;&lt;BR /&gt;datalines;&lt;BR /&gt;00001 Chemotherapy 01/01/2023 03/31/2023 Partial Response&lt;BR /&gt;00002 Immunotherapy 02/15/2023 05/15/2023 Complete Response&lt;BR /&gt;00003 Targeted Therapy 03/01/2023 06/30/2023 Stable Disease&lt;BR /&gt;00004 Chemotherapy 04/10/2023 07/10/2023 Progressive Disease&lt;BR /&gt;00005 Immunotherapy 05/20/2023 08/20/2023 Partial Response&lt;BR /&gt;00006 Chemotherapy 06/01/2023 09/30/2023 Complete Response&lt;BR /&gt;00007 Targeted Therapy 07/15/2023 10/15/2023 Stable Disease&lt;BR /&gt;00008 Chemotherapy 08/10/2023 11/10/2023 Progressive Disease&lt;BR /&gt;00009 Immunotherapy 09/20/2023 12/20/2023 Partial Response&lt;BR /&gt;00010 Targeted Therapy 10/01/2023 01/31/2024 Complete Response&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 10:36:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Not-getting-desired-output-in-table-alignment/m-p/906939#M40546</guid>
      <dc:creator>Nilesh1603</dc:creator>
      <dc:date>2023-12-08T10:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting desired output in table alignment.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Not-getting-desired-output-in-table-alignment/m-p/906940#M40547</link>
      <description>&lt;P&gt;Because your raw data is not aligned in columns, you need to use "Modified List Input" with the : and &amp;amp; modifiers. Please read about the meaning of &amp;amp; and : in this case&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmmvacdc/9.4/lestmtsref/n0lrz3gb7m9e4rn137op544ddg0v.htm#p1wk2kecsf6iz8n1ufug4i5pg6id" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmmvacdc/9.4/lestmtsref/n0lrz3gb7m9e4rn137op544ddg0v.htm#p1wk2kecsf6iz8n1ufug4i5pg6id&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, you need two consecutive blanks after the treatment_type, which indicates that SAS will allow one blank in treatment_type but when it comes to two consecutive blanks, it stops reading treatment_type and starts reading the next variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data treatment_details;
input patient_id 1-5
treatment_type &amp;amp; :$20.
start_date :mmddyy10.
end_date :mmddyy10.
response &amp;amp; :$20.;
datalines;
00001 Chemotherapy  01/01/2023 03/31/2023 Partial Response
00002 Immunotherapy  02/15/2023 05/15/2023 Complete Response
00003 Targeted Therapy  03/01/2023 06/30/2023 Stable Disease
00004 Chemotherapy  04/10/2023 07/10/2023 Progressive Disease
00005 Immunotherapy  05/20/2023 08/20/2023 Partial Response
00006 Chemotherapy  06/01/2023 09/30/2023 Complete Response
00007 Targeted Therapy  07/15/2023 10/15/2023 Stable Disease
00008 Chemotherapy  08/10/2023 11/10/2023 Progressive Disease
00009 Immunotherapy  09/20/2023 12/20/2023 Partial Response
00010 Targeted Therapy  10/01/2023 01/31/2024 Complete Response
;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Dec 2023 10:51:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Not-getting-desired-output-in-table-alignment/m-p/906940#M40547</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-12-08T10:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Not getting desired output in table alignment.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Not-getting-desired-output-in-table-alignment/m-p/906943#M40548</link>
      <description>Thank you so so much &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13573"&gt;@Paige&lt;/a&gt; Miller</description>
      <pubDate>Fri, 08 Dec 2023 11:07:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Not-getting-desired-output-in-table-alignment/m-p/906943#M40548</guid>
      <dc:creator>Nilesh1603</dc:creator>
      <dc:date>2023-12-08T11:07:12Z</dc:date>
    </item>
  </channel>
</rss>

