<?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 programming question in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Sas-programming-question/m-p/312580#M67822</link>
    <description>&lt;P&gt;Is this a SAS question or and Excel question? From what you have posted you haven't even imported the data into SAS. &amp;nbsp;If you need to do this in Excel, best place would be an Excel forum. &amp;nbsp;If you need to use SAS, then start by importing your data to three datasets, then apply your logic in a datastep (where 1 &amp;lt;= input(compress(customer,,"a),best.) &amp;lt;= 100, for instance). &amp;nbsp;Then you export the data again using proc export or ods tagsets or libname excel etc.&lt;/P&gt;</description>
    <pubDate>Fri, 18 Nov 2016 10:52:59 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2016-11-18T10:52:59Z</dc:date>
    <item>
      <title>Sas programming question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-programming-question/m-p/312577#M67821</link>
      <description>&lt;P&gt;how can i find the credit card numbers which &amp;nbsp;range from A1-A100 for all the 3 types Gold, Platinum and Titanium, if there is any card holder with any other value, i need to create a dataset and excel file “Invalid_Cards”. Remove these invalid customers from the list of Individual cards list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/5897i7E848616B9EE3B36/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="excel1.PNG" title="excel1.PNG" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2016 10:39:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-programming-question/m-p/312577#M67821</guid>
      <dc:creator>ROHINISDAS</dc:creator>
      <dc:date>2016-11-18T10:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sas programming question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-programming-question/m-p/312580#M67822</link>
      <description>&lt;P&gt;Is this a SAS question or and Excel question? From what you have posted you haven't even imported the data into SAS. &amp;nbsp;If you need to do this in Excel, best place would be an Excel forum. &amp;nbsp;If you need to use SAS, then start by importing your data to three datasets, then apply your logic in a datastep (where 1 &amp;lt;= input(compress(customer,,"a),best.) &amp;lt;= 100, for instance). &amp;nbsp;Then you export the data again using proc export or ods tagsets or libname excel etc.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Nov 2016 10:52:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-programming-question/m-p/312580#M67822</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-11-18T10:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: Sas programming question</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-programming-question/m-p/312779#M67861</link>
      <description>&lt;PRE&gt;
Post your data as text NOT picture.

data have;
input id x $20.;
cards;
1 Gold
1 Platinum 
1 Titanium
2 Gold
2 Platinum 
2 Titanium
2 xxxx
;
run;
proc sql;
create table invalid as
select *
 from have
  group by id
   having sum(x not in ('Gold' 'Platinum' 'Titanium')) ne 0;
quit;

&lt;/PRE&gt;</description>
      <pubDate>Sat, 19 Nov 2016 04:08:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-programming-question/m-p/312779#M67861</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-11-19T04:08:01Z</dc:date>
    </item>
  </channel>
</rss>

