<?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 SAS Proc print how to remove labels/ force variable into position in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/SAS-Proc-print-how-to-remove-labels-force-variable-into-position/m-p/555198#M9621</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to remove the variable labels and force them into specific positions ie "put intv @1" volume &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/70859"&gt;@12&lt;/a&gt;.etc..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc print data=recpsum noobs;&lt;BR /&gt;var sdate intv class object volume over mean max;&lt;BR /&gt;&lt;BR /&gt;format intv time8.0;&lt;BR /&gt;format volume 8.0;&lt;BR /&gt;format over 8.0;&lt;BR /&gt;format mean 8.4;&lt;/P&gt;&lt;P&gt;format max 8.4;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ian&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Apr 2019 19:58:19 GMT</pubDate>
    <dc:creator>IanW</dc:creator>
    <dc:date>2019-04-30T19:58:19Z</dc:date>
    <item>
      <title>SAS Proc print how to remove labels/ force variable into position</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Proc-print-how-to-remove-labels-force-variable-into-position/m-p/555198#M9621</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to remove the variable labels and force them into specific positions ie "put intv @1" volume &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/70859"&gt;@12&lt;/a&gt;.etc..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc print data=recpsum noobs;&lt;BR /&gt;var sdate intv class object volume over mean max;&lt;BR /&gt;&lt;BR /&gt;format intv time8.0;&lt;BR /&gt;format volume 8.0;&lt;BR /&gt;format over 8.0;&lt;BR /&gt;format mean 8.4;&lt;/P&gt;&lt;P&gt;format max 8.4;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ian&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 19:58:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Proc-print-how-to-remove-labels-force-variable-into-position/m-p/555198#M9621</guid>
      <dc:creator>IanW</dc:creator>
      <dc:date>2019-04-30T19:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Proc print how to remove labels/ force variable into position</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Proc-print-how-to-remove-labels-force-variable-into-position/m-p/555200#M9622</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/272422"&gt;@IanW&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I am trying to remove the variable labels and force them into specific positions ie "put intv @1" volume &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/70859"&gt;@12&lt;/a&gt;.etc..&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Why don't you just use a DATA step instead of PROC PRINT? In a data step, you can use command like this placing specific text into specific columns.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 20:01:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Proc-print-how-to-remove-labels-force-variable-into-position/m-p/555200#M9622</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-04-30T20:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Proc print how to remove labels/ force variable into position</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Proc-print-how-to-remove-labels-force-variable-into-position/m-p/555204#M9625</link>
      <description>&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;I just changed to code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data stufft (keep=sdate intv&lt;BR /&gt;volume);&lt;BR /&gt;file test1 noprint notitle;&lt;BR /&gt;set recpsum;&lt;BR /&gt;put @1 sdate yymmdd10.&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/189370"&gt;@14&lt;/a&gt; intv time8.0&lt;BR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/250606"&gt;@26&lt;/a&gt; volume $3.&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked perfectly.&lt;/P&gt;&lt;P&gt;I am fairly new to SAS did not know we could print outputs though a data step.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 20:18:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Proc-print-how-to-remove-labels-force-variable-into-position/m-p/555204#M9625</guid>
      <dc:creator>IanW</dc:creator>
      <dc:date>2019-04-30T20:18:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Proc print how to remove labels/ force variable into position</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-Proc-print-how-to-remove-labels-force-variable-into-position/m-p/555226#M9632</link>
      <description>&lt;P&gt;For additional fun check the documentation for "Report Writing Interface"&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 21:43:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-Proc-print-how-to-remove-labels-force-variable-into-position/m-p/555226#M9632</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-30T21:43:48Z</dc:date>
    </item>
  </channel>
</rss>

