<?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: proc sql; select case - end in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114880#M31768</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If changing the order of the statements resulted in changing the resulting file then I would have to ask: is the resulting field "LACS" meaningful?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g., if &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; lacslink_addr_typ = 'G'&lt;/SPAN&gt;, the value will always be &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; 'General Delivery'&lt;/SPAN&gt;.&amp;nbsp; It can only get one of the other values if &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; lacslink_addr_typ ne 'G'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same type of logic is applied to all of the other statements.&amp;nbsp; Does it really produce a single, usable value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Art (AKA Steelers in Toronto)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Sep 2012 14:14:20 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2012-09-07T14:14:20Z</dc:date>
    <item>
      <title>proc sql; select case - end</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114879#M31767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&amp;nbsp; I've been putting together some information with the assumption I was using select case correctly.&amp;nbsp;&amp;nbsp; It has seemed to be working but is not in this specific case.&amp;nbsp; The variable names and titles I'm using are very different in length, in the past they have not been.&amp;nbsp; I've gone back to verify that what I have been doing has been working and it seems that it has been but in this case it is not:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; create&amp;nbsp; table test as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case&lt;/P&gt;&lt;P&gt;when lacslink_addr_typ = 'G' then 'General Delivery'&lt;/P&gt;&lt;P&gt;when lacslink_ind = 'S' then 'Secondary number dropped'&lt;/P&gt;&lt;P&gt;when lacs_ind = 'L' then 'Lacs Hit'&lt;/P&gt;&lt;P&gt;when lacslink_ind = 'Y' then 'LacsLink Match'&lt;/P&gt;&lt;P&gt;when lacslink_ind = 'N' then 'No Match'&lt;/P&gt;&lt;P&gt;when lacslink_ind = 'F' then 'False Positive'&lt;/P&gt;&lt;P&gt;when lacslink_addr_typ = 'S' then 'Street Address'&lt;/P&gt;&lt;P&gt;when lacslink_addr_typ = 'F' then 'Firm'&lt;/P&gt;&lt;P&gt;when lacslink_addr_typ = 'H' then 'High Rise'&lt;/P&gt;&lt;P&gt;when lacslink_addr_typ = 'R' then 'Rural Route'&lt;/P&gt;&lt;P&gt;when lacslink_addr_typ = 'P' then 'PO Box'&lt;/P&gt;&lt;P&gt;else 'Missing'&lt;/P&gt;&lt;P&gt;end as LACS&lt;/P&gt;&lt;P&gt;from prd_eds.v_address_household&lt;/P&gt;&lt;P&gt;where ver_start_day_key &amp;lt;= &amp;amp;prev_lock and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ver_end_day_key &amp;gt; &amp;amp;prev_lock;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing this to combine two dates, then merge and get the difference in between the two.&amp;nbsp; I'm not getting the desired results and I'm wondering why.&amp;nbsp; The only thing I can think of that is different is the length so I've moved around the order and it changes the results but still never gives the desired results.&amp;nbsp; I'm wondering if I've been wrong about the syntax or the purpose of this exercise all along.&amp;nbsp; Any help will be appreciated.&amp;nbsp; Thank You,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 13:48:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114879#M31767</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2012-09-07T13:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql; select case - end</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114880#M31768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If changing the order of the statements resulted in changing the resulting file then I would have to ask: is the resulting field "LACS" meaningful?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g., if &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; lacslink_addr_typ = 'G'&lt;/SPAN&gt;, the value will always be &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; 'General Delivery'&lt;/SPAN&gt;.&amp;nbsp; It can only get one of the other values if &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; lacslink_addr_typ ne 'G'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same type of logic is applied to all of the other statements.&amp;nbsp; Does it really produce a single, usable value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Art (AKA Steelers in Toronto)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 14:14:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114880#M31768</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-09-07T14:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql; select case - end</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114881#M31769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure I understand, when 'g' then 'general delivery',&amp;nbsp; if it's not g it has to be one of the other options given, else 'missing'.&amp;nbsp; I noticed after I posted that I use 's' twice but they are for two different variables so I didn't think that would matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the resulting field lacs isn't meaningful.&amp;nbsp; I picked it randomly to give the field a name.&amp;nbsp; Does that matter?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go Steelers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 14:23:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114881#M31769</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2012-09-07T14:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql; select case - end</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114882#M31770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I split the above code into three sections by variables, then put them back together in a data step formatting lacs to a reasonable length.&amp;nbsp; That gets me the result that I was looking for.&amp;nbsp; I still don't understand why the first code didn't work.&amp;nbsp; I question what I've been doing up until this point and wonder if I've been missing errors in the past.&amp;nbsp; Do you see anything in the original code that would prevent the desired results?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 14:48:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114882#M31770</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2012-09-07T14:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql; select case - end</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114883#M31771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wasn't referring to the name LACS but, rather, what the field represents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g., the way your query is designed, you will NEVER get any of the other errors &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;when lacslink_addr_typ = 'G' then 'General Delivery'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;when lacslink_ind = 'S' then 'Secondary number dropped' actually reads:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;when lacslink_ind = 'S' AND &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; lacslink_addr_typ NE 'G' &lt;/SPAN&gt; then 'Secondary number dropped'.&amp;nbsp; And, in such cases, you will never see any of the other errors.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;when lacs_ind = 'L' then 'Lacs Hit'&lt;/SPAN&gt;, accordingly, actually reads:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;when lacs_ind = 'L' and&amp;nbsp; &lt;/SPAN&gt;lacslink_ind NE 'S' AND&amp;nbsp; lacslink_addr_typ NE 'G' &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; then 'Lacs Hit'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;etc, etc.&amp;nbsp; If that result is meaningful and what you want, the code should be doing what it states.&amp;nbsp; However, changing the order of the statements will definitely produce different results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 15:00:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114883#M31771</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-09-07T15:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql; select case - end</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114884#M31772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is very helpful,&amp;nbsp; what I am attempting to do is get one variable named 'LACS', then I'm running a proc freq and seeing how the count changes over time.&amp;nbsp; I'm still not sure why the order would change, all of the variables are unique to the naming convention.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking of 'when/then' statements as if it was if/then/end, running them in my mind independently of each other.&amp;nbsp; I have a lot of work to get back through editing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 15:16:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114884#M31772</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2012-09-07T15:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql; select case - end</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114885#M31773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope I'm not being too much of a bother but I have one more question.&amp;nbsp; If you understand what I'm trying to do, have each one of the when/then statements as independent statements, is it possible to do that without writing each variable in it's on proc sql; statement?&amp;nbsp; I'd like to put an end at the end of each line, so I can have all of the individual statements combined into the lacs column.&amp;nbsp; I guess this is not the best way to go about that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 15:28:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114885#M31773</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2012-09-07T15:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql; select case - end</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114886#M31774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From your code, I'm wondering if you're trying to nest your CASE statements, in otherwords&lt;/P&gt;&lt;P&gt;"if a then if m then x&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;if b then if n then w&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else z"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is quite possible, but the way your code is currently structured, you're doing&lt;/P&gt;&lt;P&gt;"if a then x1 else&lt;/P&gt;&lt;P&gt;if m then x2 else&lt;/P&gt;&lt;P&gt;if b then w1 else w2"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which may account for why your results are varying. To do it with a CASE try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case&lt;/P&gt;&lt;P&gt; when a then case&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when m then x&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else y&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;/P&gt;&lt;P&gt;when b then case&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when n then w&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else z&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;else v&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;end&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;I suspect the spacing will be a mess in this post, and I'm sure that I've missed or misplaced some ENDs and brackets, but this should give you the idea.&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;&lt;/P&gt;&lt;P style="padding: 0pt; margin: 0pt;"&gt;Tom&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 16:00:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114886#M31774</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2012-09-07T16:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql; select case - end</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114887#M31775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What I'm trying to do is get a response for each variable independently of the others,&amp;nbsp; I can write each variable separately in it's on proc sql; but there are over 500 variables that I'm trying to do this with so I didn't want to do that.&amp;nbsp; It will be too much text and take too much time when I try to put them all together after.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2012 16:21:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-sql-select-case-end/m-p/114887#M31775</guid>
      <dc:creator>Steelers_In_DC</dc:creator>
      <dc:date>2012-09-07T16:21:20Z</dc:date>
    </item>
  </channel>
</rss>

