<?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: Export proc univariate output to multiple microsoft excel sheets in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Export-proc-univariate-output-to-multiple-microsoft-excel-sheets/m-p/226484#M54042</link>
    <description>&lt;P&gt;Use option &lt;STRONG&gt;OUTTABLE&lt;/STRONG&gt; and &lt;STRONG&gt;proc transpose&lt;/STRONG&gt; :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc univariate data=table1 normal outtable=OT;
var speed height duration distance;
run;

proc transpose data=ot out=OTT(drop=_NAME_) label=statistic;
id _VAR_;
var _NUMERIC_;
run;

proc print data=OTT noobs; run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Sep 2015 02:31:48 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2015-09-21T02:31:48Z</dc:date>
    <item>
      <title>Export proc univariate output to multiple microsoft excel sheets</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Export-proc-univariate-output-to-multiple-microsoft-excel-sheets/m-p/226461#M54041</link>
      <description>&lt;P&gt;I am trying to run the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc univariate data=table1 normal plot;
var speed height duration distance;
run;&lt;/PRE&gt;&lt;P&gt;This code works fine, the only thing I want to know is whether I can show each of the results of proc univariate side by side for the 4 variables I have beside the 'var' statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I mean is, lets say I get moments by using proc univariate, I want all the moments results of these 4 variables placed one beside the other, then the basic statistics sumry.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently I get all results for speed first, then for height, duration and distance, one after the other. So for comparing speed and distance basic statistics, I would have to keep on scrolling up and down.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Sun, 20 Sep 2015 16:53:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Export-proc-univariate-output-to-multiple-microsoft-excel-sheets/m-p/226461#M54041</guid>
      <dc:creator>b555</dc:creator>
      <dc:date>2015-09-20T16:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: Export proc univariate output to multiple microsoft excel sheets</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Export-proc-univariate-output-to-multiple-microsoft-excel-sheets/m-p/226484#M54042</link>
      <description>&lt;P&gt;Use option &lt;STRONG&gt;OUTTABLE&lt;/STRONG&gt; and &lt;STRONG&gt;proc transpose&lt;/STRONG&gt; :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc univariate data=table1 normal outtable=OT;
var speed height duration distance;
run;

proc transpose data=ot out=OTT(drop=_NAME_) label=statistic;
id _VAR_;
var _NUMERIC_;
run;

proc print data=OTT noobs; run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2015 02:31:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Export-proc-univariate-output-to-multiple-microsoft-excel-sheets/m-p/226484#M54042</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2015-09-21T02:31:48Z</dc:date>
    </item>
  </channel>
</rss>

