<?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 Creating Table from Excel in SAS Enterprise in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Creating-Table-from-Excel-in-SAS-Enterprise/m-p/596009#M15884</link>
    <description>&lt;P&gt;Hi, I am pretty new to SAS overall, I am trying to create a table I made in Excel using SAS Enterprise guide 6.1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See data set and excel table attached.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Excel Table.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33105iEE6DB0010D1CE7E3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Excel Table.jpg" alt="Excel Table.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Sat, 12 Oct 2019 23:42:08 GMT</pubDate>
    <dc:creator>dach141</dc:creator>
    <dc:date>2019-10-12T23:42:08Z</dc:date>
    <item>
      <title>Creating Table from Excel in SAS Enterprise</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Creating-Table-from-Excel-in-SAS-Enterprise/m-p/596009#M15884</link>
      <description>&lt;P&gt;Hi, I am pretty new to SAS overall, I am trying to create a table I made in Excel using SAS Enterprise guide 6.1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See data set and excel table attached.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Excel Table.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33105iEE6DB0010D1CE7E3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Excel Table.jpg" alt="Excel Table.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 12 Oct 2019 23:42:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Creating-Table-from-Excel-in-SAS-Enterprise/m-p/596009#M15884</guid>
      <dc:creator>dach141</dc:creator>
      <dc:date>2019-10-12T23:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Table from Excel in SAS Enterprise</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Creating-Table-from-Excel-in-SAS-Enterprise/m-p/596048#M15888</link>
      <description>&lt;P&gt;First, I had to make valid SAS variable names, then I used proc sgplot:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options validvarname=any;
data have;
set myfold.filter_for_sortsortedvendor_0_5_;
rename
  'Product Category'n=product_category
  'Percentage of Total Expenditure'n=percentage
;
run;

options validvarname=v7;

ods graphics / reset width=6.4in height=4.8in imagemap;

proc sgplot data=WORK.HAVE;
	hbar Vendor / response=percentage categoryorder=respdesc;
	xaxis grid;
run;

ods graphics / reset;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sasgraph.png"&gt;&lt;img src="https://communities.sas.com/skins/images/2FD96521DCF95C42FE57BF2A7CB72678/responsive_peak/images/image_not_found.png" alt="sasgraph.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Oct 2019 09:17:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Creating-Table-from-Excel-in-SAS-Enterprise/m-p/596048#M15888</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-10-13T09:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Table from Excel in SAS Enterprise</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Creating-Table-from-Excel-in-SAS-Enterprise/m-p/596187#M15912</link>
      <description>Thank You!</description>
      <pubDate>Mon, 14 Oct 2019 09:29:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Creating-Table-from-Excel-in-SAS-Enterprise/m-p/596187#M15912</guid>
      <dc:creator>dach141</dc:creator>
      <dc:date>2019-10-14T09:29:12Z</dc:date>
    </item>
  </channel>
</rss>

