<?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: select the observation which has mobile in it in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828868#M35470</link>
    <description>yes it worked. thanks and I accepted as the solution.</description>
    <pubDate>Tue, 16 Aug 2022 15:09:54 GMT</pubDate>
    <dc:creator>Smitha9</dc:creator>
    <dc:date>2022-08-16T15:09:54Z</dc:date>
    <item>
      <title>select the observation which has mobile in it</title>
      <link>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828760#M35454</link>
      <description>&lt;P&gt;Hi, I have a dataset which is&lt;/P&gt;&lt;P&gt;ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Name&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fact mobile&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; stay&amp;nbsp; focus mobile&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; facial&lt;/P&gt;&lt;P&gt;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; free flow in the rest mobile&lt;/P&gt;&lt;P&gt;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;secured locate&lt;/P&gt;&lt;P&gt;6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;focus in the center right angle mobile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to select all the ID's which has "mobile" word in the Name variable.&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp;fact mobile&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp;stay focus mobile&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp;free flow in the rest mobile&lt;/P&gt;&lt;P&gt;4&amp;nbsp; &amp;nbsp; &amp;nbsp;focus in the center right angle mobile&lt;/P&gt;&lt;P&gt;thank you in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 21:29:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828760#M35454</guid>
      <dc:creator>Smitha9</dc:creator>
      <dc:date>2022-08-15T21:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: select the observation which has mobile in it</title>
      <link>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828761#M35455</link>
      <description>&lt;PRE&gt;data want;
   set have;
   where find(name,'mobile','i')&amp;gt;0;
run;&lt;/PRE&gt;
&lt;P&gt;If it must exactly match the word and not allow "mobile" as part of a compound word then use FINDW.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 21:47:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828761#M35455</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-08-15T21:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: select the observation which has mobile in it</title>
      <link>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828762#M35456</link>
      <description>&lt;P&gt;where name contains 'mobile';&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 21:52:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828762#M35456</guid>
      <dc:creator>yaakov555</dc:creator>
      <dc:date>2022-08-15T21:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: select the observation which has mobile in it</title>
      <link>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828789#M35459</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/429982"&gt;@yaakov555&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;where name contains 'mobile';&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This won't match, if name is "Super Mobile Provider".&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 05:14:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828789#M35459</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2022-08-16T05:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: select the observation which has mobile in it</title>
      <link>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828852#M35465</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/429982"&gt;@yaakov555&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;where name contains 'mobile';&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Did you try the code?:&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 14:11:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828852#M35465</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-08-16T14:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: select the observation which has mobile in it</title>
      <link>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828868#M35470</link>
      <description>yes it worked. thanks and I accepted as the solution.</description>
      <pubDate>Tue, 16 Aug 2022 15:09:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/select-the-observation-which-has-mobile-in-it/m-p/828868#M35470</guid>
      <dc:creator>Smitha9</dc:creator>
      <dc:date>2022-08-16T15:09:54Z</dc:date>
    </item>
  </channel>
</rss>

