<?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: SAS add in for Excel -- splitting age into three categories in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360443#M23708</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Actually, the SAS Add-In for Office&amp;nbsp;&lt;STRONG&gt;does&lt;/STRONG&gt; offer a program editor interface now! &amp;nbsp;You can create and run SAS programs, if you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Heh. Have to test that out, once I'm through with the upgrade to SAS 9.4 &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Althought my preferred method will always be to keep the logic in SAS codes that can be reviewed &amp;amp; versioned. Makes for a simpler life with auditors.&lt;/P&gt;</description>
    <pubDate>Mon, 22 May 2017 14:10:23 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-05-22T14:10:23Z</dc:date>
    <item>
      <title>SAS add in for Excel -- splitting age into three categories</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360427#M23704</link>
      <description>&lt;P&gt;Hi, I am new to SAS add in for Excel, and&amp;nbsp; I'm trying to create age categories from a numeric age variable (i.e., take varaible age in years and break it into ages 16-30,31-50,51-64. I've tried using the split columns task, but no luck. Suggestions?&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 13:33:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360427#M23704</guid>
      <dc:creator>ABZ</dc:creator>
      <dc:date>2017-05-22T13:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS add in for Excel -- splitting age into three categories</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360435#M23705</link>
      <description>&lt;P&gt;The SAS Add-In for Microsoft office can only deliver data from SAS; either from datasets, multidimensional cubes, or stored processes. It does not offer a program interface, for this you either need SAS Studio or Enterprise Guide.&lt;/P&gt;
&lt;P&gt;So you either do your logic in Excel, or you switch to programming the logic in SAS, using one of the aforementioned tools. From there you can either use the Add-In to retrieve the manipulated data (store the resulting dataset in a permanent library), or you can export to an Excel workbook.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 13:50:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360435#M23705</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-22T13:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS add in for Excel -- splitting age into three categories</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360439#M23706</link>
      <description>Thanks! So I basically have to create the new variables in excel first? Do you know what the “Split Columns” task in SAS add-in is used for?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 22 May 2017 13:59:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360439#M23706</guid>
      <dc:creator>ABZ</dc:creator>
      <dc:date>2017-05-22T13:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: SAS add in for Excel -- splitting age into three categories</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360440#M23707</link>
      <description>&lt;P&gt;Actually, the SAS Add-In for Office&amp;nbsp;&lt;STRONG&gt;does&lt;/STRONG&gt; offer a program editor interface now! &amp;nbsp;You can create and run SAS programs, if you want.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;However, the approach to your problem is probably best served by using SAS formats, which allow you to define age ranges into categories, then create a report based on those categories.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Create Format task is not part of the SAS Add-In menu (I don't think) -- so you could do that step in code or via SAS Enterprise Guide, then store the format definition in a library that you can access in your SAS Add-In for Microsoft Office session. &amp;nbsp;Then the Summary Tables report or even One-Way Frequencies could be used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you can add these classifications to Excel -- then the range rules would be part of your spreadsheet, not part of your SAS process. &amp;nbsp;That's up to you.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 13:59:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360440#M23707</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-05-22T13:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS add in for Excel -- splitting age into three categories</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360443#M23708</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4"&gt;@ChrisHemedinger&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Actually, the SAS Add-In for Office&amp;nbsp;&lt;STRONG&gt;does&lt;/STRONG&gt; offer a program editor interface now! &amp;nbsp;You can create and run SAS programs, if you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Heh. Have to test that out, once I'm through with the upgrade to SAS 9.4 &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Althought my preferred method will always be to keep the logic in SAS codes that can be reviewed &amp;amp; versioned. Makes for a simpler life with auditors.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 14:10:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360443#M23708</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-22T14:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS add in for Excel -- splitting age into three categories</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360448#M23709</link>
      <description>&lt;P&gt;You can see this feature in action - &lt;A href="http://video.sas.com/sasgf17/detail/videos/tech-talks/video/5384735102001/sas-tech-talk:-sas-add-in-for-microsoft-office?autoStart=true" target="_self"&gt;here's a demo from the SAS R&amp;amp;D developer&lt;/A&gt;!&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 14:28:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-add-in-for-Excel-splitting-age-into-three-categories/m-p/360448#M23709</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-05-22T14:28:54Z</dc:date>
    </item>
  </channel>
</rss>

