<?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: Variable Selection: SAS Enterprise Guide &amp;amp; SAS Enterprise Miner – Ask the Expert Q&amp;amp;A in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365591#M23966</link>
    <description>&lt;PRE&gt;proc sql;
create table have as
select * from want
where initials in('XX', 'XY', 'XO');
quit;&lt;/PRE&gt;</description>
    <pubDate>Fri, 09 Jun 2017 03:41:38 GMT</pubDate>
    <dc:creator>kiranv_</dc:creator>
    <dc:date>2017-06-09T03:41:38Z</dc:date>
    <item>
      <title>Variable Selection: SAS Enterprise Guide &amp; SAS Enterprise Miner – Ask the Expert Q&amp;A</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365587#M23963</link>
      <description>&lt;P&gt;Beginner here. Unfortunately a bit overhhelmed and new to coding. &amp;nbsp;I would like to be able to select multiple cases and create a table of them. &amp;nbsp;I understand that creating a table I need to use this: &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql; select * from ____.__ where initials = 'XX'; quit;&lt;BR /&gt;proc sql; create table test as select * from _____.______ where initials = 'XX'; quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I would like to find multiple individuals&lt;/P&gt;&lt;P&gt;Thank you in advance! &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 02:55:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365587#M23963</guid>
      <dc:creator>Lauban</dc:creator>
      <dc:date>2017-06-09T02:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: Variable Selection: SAS Enterprise Guide &amp; SAS Enterprise Miner – Ask the Expert Q&amp;A</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365588#M23964</link>
      <description>&lt;P&gt;below is the link for free Proc SQL session, which may be helpful for you. You just need to register and you can listen to an excellent session.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sas.com/en_us/webinars/sql-introduction/register.html" target="_blank"&gt;s://www.sas.com/en_us/webinars/sql-introduction/register.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Please give some more details, so that someone call help you. How your sample dataset looks like and how your result dataset look like.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 03:13:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365588#M23964</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-06-09T03:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Variable Selection: SAS Enterprise Guide &amp; SAS Enterprise Miner – Ask the Expert Q&amp;A</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365590#M23965</link>
      <description>&lt;P&gt;Thanks for your help I will check that session out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My data set looks like&amp;nbsp;&lt;/P&gt;&lt;P&gt;Initials DOB Variable 1 Variable 2&lt;/P&gt;&lt;P&gt;XX &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;_ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2 &amp;nbsp;&lt;/P&gt;&lt;P&gt;XY &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;_ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&lt;/P&gt;&lt;P&gt;XO &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to find XX, XY, XO and have a table of their variables in the results viewer&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 03:34:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365590#M23965</guid>
      <dc:creator>Lauban</dc:creator>
      <dc:date>2017-06-09T03:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: Variable Selection: SAS Enterprise Guide &amp; SAS Enterprise Miner – Ask the Expert Q&amp;A</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365591#M23966</link>
      <description>&lt;PRE&gt;proc sql;
create table have as
select * from want
where initials in('XX', 'XY', 'XO');
quit;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jun 2017 03:41:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365591#M23966</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2017-06-09T03:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Variable Selection: SAS Enterprise Guide &amp; SAS Enterprise Miner – Ask the Expert Q&amp;A</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365626#M23970</link>
      <description>&lt;P&gt;It makes no sense to have a title on this thread "Re: Variable Selection: SAS Enterprise Guide &amp;amp; SAS Enterprise Miner -- Ask the Expert Q&amp;amp;A", as this question has nothing to do with Enterprise Guide, nothing to do with Enterprise MIner, and nothing to do with "variable selection". This is not a variable selection question, this is a question about selecting observations or rows (not variables).&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 10:35:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Variable-Selection-SAS-Enterprise-Guide-amp-SAS-Enterprise-Miner/m-p/365626#M23970</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-06-09T10:35:46Z</dc:date>
    </item>
  </channel>
</rss>

