<?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: &amp;quot;WHERE&amp;quot; statement into Proc GLM in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/quot-WHERE-quot-statement-into-Proc-GLM/m-p/193866#M48705</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use where clause in data= -clause&lt;/P&gt;&lt;P&gt;Proc Glm data=have(where=(Polen_gr lt 250));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 May 2015 13:57:00 GMT</pubDate>
    <dc:creator>AskoLötjönen</dc:creator>
    <dc:date>2015-05-27T13:57:00Z</dc:date>
    <item>
      <title>"WHERE" statement into Proc GLM</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/quot-WHERE-quot-statement-into-Proc-GLM/m-p/193865#M48704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hi my friends:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have one question, as always haha:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have many data to use into Proc GLM, and i need to exclude some data (Discrepant data) from the tail and head, so im trying to use WHERE statement like that:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Proc GLM:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where Polen_Gr &amp;lt; 250; (meaning that i'm gonna use just data under 250)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And i would like to Add that i want to use data above 100 and i dont know how to do it&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resuming: I JUST NEED the interval &lt;SPAN style="font-size: 18pt; color: #0000ff;"&gt;"X"&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-align: center;"&gt;&lt;SPAN style="color: #0000ff; font-size: 14pt;"&gt;&lt;STRONG&gt;100&amp;gt;X&amp;gt;250&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: center;"&gt;&lt;SPAN style="color: #0000ff; font-size: 14pt;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="text-align: center;"&gt;&lt;SPAN style="color: #0000ff; font-size: 14pt;"&gt;&lt;STRONG&gt;Thanks&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 13:46:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/quot-WHERE-quot-statement-into-Proc-GLM/m-p/193865#M48704</guid>
      <dc:creator>jonatan_velarde</dc:creator>
      <dc:date>2015-05-27T13:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: "WHERE" statement into Proc GLM</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/quot-WHERE-quot-statement-into-Proc-GLM/m-p/193866#M48705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use where clause in data= -clause&lt;/P&gt;&lt;P&gt;Proc Glm data=have(where=(Polen_gr lt 250));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 13:57:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/quot-WHERE-quot-statement-into-Proc-GLM/m-p/193866#M48705</guid>
      <dc:creator>AskoLötjönen</dc:creator>
      <dc:date>2015-05-27T13:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: "WHERE" statement into Proc GLM</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/quot-WHERE-quot-statement-into-Proc-GLM/m-p/193867#M48706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To apply both boundaries:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where 100 &amp;lt; Polen_Gr &amp;lt; 250;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 14:00:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/quot-WHERE-quot-statement-into-Proc-GLM/m-p/193867#M48706</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-05-27T14:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: "WHERE" statement into Proc GLM</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/quot-WHERE-quot-statement-into-Proc-GLM/m-p/193868#M48707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try what you posted?&lt;/P&gt;&lt;P&gt;These three different methods should all do the same thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where 100 &amp;lt; Polen_Gr &amp;lt; 250 ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where (100 &amp;lt; Polen_Gr ) and (Polen_Gr &amp;lt; 250) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where 100 &amp;lt; Polen_Gr ;&lt;/P&gt;&lt;P&gt;where also Polen_Gr &amp;lt; 250 ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 14:02:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/quot-WHERE-quot-statement-into-Proc-GLM/m-p/193868#M48707</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-05-27T14:02:24Z</dc:date>
    </item>
  </channel>
</rss>

