<?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: Update Multiple rows Based on one Row’s Value in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526211#M143266</link>
    <description>&lt;P&gt;Fair enough &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I was surprised though&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jan 2019 21:29:06 GMT</pubDate>
    <dc:creator>novinosrin</dc:creator>
    <dc:date>2019-01-10T21:29:06Z</dc:date>
    <item>
      <title>Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526194#M143254</link>
      <description>&lt;P&gt;Is there a simple way to update something like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have one row per semester.&amp;nbsp; I have three semesters in a year.&amp;nbsp; If any of the semesters has a value of X then set a variable to true for all three rows otherwise set it to false.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I could use a loop but I am thinking there is something simpler and efficient.&lt;/P&gt;
&lt;P&gt;Update multiple rows based on a value.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 20:37:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526194#M143254</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2019-01-10T20:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526195#M143255</link>
      <description>&lt;P&gt;You can do something like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input year semester $;
datalines;
2017 A
2017 B
2017 C
2018 A
2018 X
2018 C
;

proc sql;
   create table want as
   select *
   from have
   group by year
   having sum(semester='X') &amp;gt; 0;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Jan 2019 20:43:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526195#M143255</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-01-10T20:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526196#M143256</link>
      <description>&lt;P&gt;Or if you want to do so in a data step, here is a hash solution, that I quite like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
   if _N_ = 1 then do;
      declare hash h(dataset:"have(where=(semester='X'))");
      h.defineKey('year');
      h.defineDone();
   end;
   
   set have;

   if h.check()=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Jan 2019 20:46:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526196#M143256</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-01-10T20:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526199#M143258</link>
      <description>&lt;P&gt;The idea is to keep the same number of rows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;case 1&lt;/P&gt;
&lt;P&gt;One or more semesters have the flag so all values of column wanted flag is Yes.&lt;/P&gt;
&lt;P&gt;Term&amp;nbsp; &amp;nbsp; &amp;nbsp;Original Flag&amp;nbsp; &amp;nbsp;Wanted Flag&lt;/P&gt;
&lt;P&gt;Spring&amp;nbsp; &amp;nbsp; &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;Yes&lt;/P&gt;
&lt;P&gt;Fall&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;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Yes&lt;/P&gt;
&lt;P&gt;Summer&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Yes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;case2&lt;/P&gt;
&lt;P&gt;No semester has the value so all of column wanted flag is no.&lt;/P&gt;
&lt;P&gt;Term&amp;nbsp; &amp;nbsp; &amp;nbsp;Original Flag&amp;nbsp; &amp;nbsp;Wanted Flag&lt;/P&gt;
&lt;P&gt;Spring&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; No&lt;/P&gt;
&lt;P&gt;Fall&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;0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; No&lt;/P&gt;
&lt;P&gt;Summer&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;No&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 20:54:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526199#M143258</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2019-01-10T20:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526201#M143260</link>
      <description>Sort your data by descending original flag. And then only check on the first row to assign the value. &lt;BR /&gt;&lt;BR /&gt;proc sort data=have; &lt;BR /&gt;by ID descending originalFlag;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data want;&lt;BR /&gt;set have;&lt;BR /&gt;by id descending originalflag;&lt;BR /&gt;if first.id and originalFlag=1 then wantedflag='Yes' else if first.ID then wantedFlag='No'; &lt;BR /&gt;&lt;BR /&gt;retain wantedFlag;&lt;BR /&gt;run;</description>
      <pubDate>Thu, 10 Jan 2019 20:57:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526201#M143260</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-10T20:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526203#M143262</link>
      <description>&lt;P&gt;The idea of this is relatively simple (although there are a few ways to solve it).&amp;nbsp; Here's a readily understandable way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sort data=have;&lt;/P&gt;
&lt;P&gt;by year;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;do until (last.year);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;set have;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;by year;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;if original_flag then wanted_flag='True';&lt;/P&gt;
&lt;P&gt;end;&lt;/P&gt;
&lt;P&gt;do until (last.year);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;set have;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;by year;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;output;&lt;/P&gt;
&lt;P&gt;end;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There's a little bit of confusion here about what the variable names are and what values they take on ... but the program can easily be adjusted to accommodate.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 21:06:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526203#M143262</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-01-10T21:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526205#M143263</link>
      <description>&lt;P&gt;Ah, I see. This will do then.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Year Term $ Original_Flag;
datalines;
2017 Spring 0
2017 Fall 0
2017 Summer 0
2018 Spring 1
2018 Fall 1
2018 Summer 0
;

data want;
 if _N_ = 1 then do;
 declare hash h(dataset:"have(where=(Original_Flag=1))");
 h.defineKey('year');
 h.defineDone();
 end;
 
 set have;

 New_Flag="Yes";
 if h.check() ne 0 then New_Flag="No";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Jan 2019 21:11:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526205#M143263</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-01-10T21:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526208#M143264</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;Mam, some humor- did you miss your coffee or didn't get enough sleep. I would have never ever thought you would miss out on your favorite max function that you answered a similar query just yesterday and many a times flawlessly. Hmm, even the smartest tend to miss out at times? or was there a purpose to sort? Starbucks is better than tim hortons imho. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So &lt;STRONG&gt;plagiarizing&lt;/STRONG&gt; your favorite idea, I offer the following&lt;/P&gt;
&lt;P&gt;using&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;sample&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Year Term $ Original_Flag;
datalines;
2017 Spring 0
2017 Fall 0
2017 Summer 0
2018 Spring 1
2018 Fall 1
2018 Summer 0
;
proc sql;
create table want as
select *,ifc(max(Original_Flag)&amp;gt;0,'TRUE','FALSE') as wanted_flag
from have
group by year;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 21:48:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526208#M143264</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-01-10T21:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526210#M143265</link>
      <description>It depends on the case - in this case it's a remerge with the main data so that's still two passes of the data. If you have do multiple passes it doesn't matter much which approach you use. In other cases, it's not because it's a summarization of the output instead.</description>
      <pubDate>Thu, 10 Jan 2019 21:28:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526210#M143265</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-10T21:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526211#M143266</link>
      <description>&lt;P&gt;Fair enough &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I was surprised though&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2019 21:29:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526211#M143266</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-01-10T21:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526217#M143270</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Year Term $ Original_Flag;
datalines;
2017 Spring 0
2017 Fall 0
2017 Summer 0
2018 Spring 1
2018 Fall 1
2018 Summer 0
;
data want;
merge have have(in =b keep=Original_Flag year rename=(Original_Flag=_f) where=(_f=1) );
by year;
retain wanted_flag '     ';
if b then   wanted_flag='TRUE';else wanted_flag='FALSE';
drop _f;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Jan 2019 21:52:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526217#M143270</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-01-10T21:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526372#M143335</link>
      <description>&lt;P&gt;I'm going to go with this method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; have&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;input&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Year&lt;/SPAN&gt; Term &lt;SPAN class="token punctuation"&gt;$&lt;/SPAN&gt; Original_Flag&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token datalines"&gt;&lt;SPAN class="token keyword"&gt;datalines&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;SPAN class="token data string"&gt;
2017 Spring 0
2017 Fall 0
2017 Summer 0
2018 Spring 1
2018 Fall 1
2018 Summer 0
&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;sql&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
create &lt;SPAN class="token statement"&gt;table&lt;/SPAN&gt; want as
&lt;SPAN class="token statement"&gt;select&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;*&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;ifc&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;max&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;Original_Flag&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;0&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'TRUE'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'FALSE'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; as wanted_flag
&lt;SPAN class="token keyword"&gt;from&lt;/SPAN&gt; have
&lt;SPAN class="token keyword"&gt;group&lt;/SPAN&gt; &lt;SPAN class="token statement"&gt;by&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;year&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;quit&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Jan 2019 14:10:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526372#M143335</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2019-01-11T14:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526376#M143337</link>
      <description>&lt;P&gt;Good morning :), That's the reason I love the banter with Reeza saying Starbucks coffee is better than Tim hortons.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 14:29:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526376#M143337</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-01-11T14:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Update Multiple rows Based on one Row’s Value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526544#M143417</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Good morning :), That's the reason I love the banter with Reeza saying Starbucks coffee is better than Tim hortons.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;lol.&amp;nbsp;Reeza doesn't drink coffee. The one time she drank coffee was before her first SAS presentation and she was too nervous and hadn't slept. And then talked a mile a minute during the presentation. It was selected for coders corner in Global Forum though &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jan 2019 00:51:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Update-Multiple-rows-Based-on-one-Row-s-Value/m-p/526544#M143417</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-01-12T00:51:47Z</dc:date>
    </item>
  </channel>
</rss>

