<?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 Extracting a infromation from a cell in row from a data set in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593066#M76030</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am a revived SAS user, so I am a little "rusty" with some of my programming.&amp;nbsp; I am trying to devise a program that will read each row in a column an compare the values of each row. T&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;he issue here is that the values in this column decrease until it reaches row 9.&amp;nbsp; I need the increase between Row 8 and Row 9 to signal the system to stop, and extract Row 8.&amp;nbsp;&lt;/SPAN&gt; I found the program below that handles the extraction portion of the process, but I need help with the proper logic so it will do this with any sets of numbers.&amp;nbsp; To help clarify, with the program below, the correct row that should be extracted is "Row 8".&amp;nbsp; How do I get the system to recognize this increase, which I suspect is an if else statement, but I can't seem to wrap my mind about the proper way to word the statement to extract this row?&amp;nbsp; Keep in mind, I need the flexibility that the values could be any sets of numbers.&amp;nbsp; Below is a simple example to get me on my way, but it only handles the extraction rather than the logic to extract row 8.&amp;nbsp; Any help is welcomed.&amp;nbsp; Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;George &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;FONT&gt;data have;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile datalines dsd dlm=",";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; input&amp;nbsp;&amp;nbsp; Variable_names&amp;nbsp; : $char10.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; datalines;&lt;BR /&gt;Row 1 , 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 2 , 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 3 , 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 4 , 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 5 , 3&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 6 , 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 7 , 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 8 , 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 9 , 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 10, 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 11, 6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 12, 7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 13, 8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;data want_with;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if strip(Var1) = 2 then output want_with;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 01 Oct 2019 15:22:56 GMT</pubDate>
    <dc:creator>George3</dc:creator>
    <dc:date>2019-10-01T15:22:56Z</dc:date>
    <item>
      <title>Extracting a infromation from a cell in row from a data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593066#M76030</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am a revived SAS user, so I am a little "rusty" with some of my programming.&amp;nbsp; I am trying to devise a program that will read each row in a column an compare the values of each row. T&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;he issue here is that the values in this column decrease until it reaches row 9.&amp;nbsp; I need the increase between Row 8 and Row 9 to signal the system to stop, and extract Row 8.&amp;nbsp;&lt;/SPAN&gt; I found the program below that handles the extraction portion of the process, but I need help with the proper logic so it will do this with any sets of numbers.&amp;nbsp; To help clarify, with the program below, the correct row that should be extracted is "Row 8".&amp;nbsp; How do I get the system to recognize this increase, which I suspect is an if else statement, but I can't seem to wrap my mind about the proper way to word the statement to extract this row?&amp;nbsp; Keep in mind, I need the flexibility that the values could be any sets of numbers.&amp;nbsp; Below is a simple example to get me on my way, but it only handles the extraction rather than the logic to extract row 8.&amp;nbsp; Any help is welcomed.&amp;nbsp; Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;George &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;FONT&gt;data have;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; infile datalines dsd dlm=",";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; input&amp;nbsp;&amp;nbsp; Variable_names&amp;nbsp; : $char10.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Var6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 8.;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; datalines;&lt;BR /&gt;Row 1 , 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 2 , 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 3 , 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 4 , 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 5 , 3&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 6 , 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 7 , 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 8 , 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 9 , 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 10, 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 11, 6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 12, 7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;Row 13, 8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , 1, 2, 3, 4, 5&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;data want_with;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if strip(Var1) = 2 then output want_with;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 01 Oct 2019 15:22:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593066#M76030</guid>
      <dc:creator>George3</dc:creator>
      <dc:date>2019-10-01T15:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting a infromation from a cell in row from a data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593078#M76031</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have_2;
set have;
row = _N_;
run;

proc sort data=have_2;
by descending row;
run;

data want;
set have_2;
if strip(var1) &amp;lt; lag(strip(var1)) then flag = 1;&lt;BR /&gt;run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The lag function is probably what you're after. This captures all value changes, so I'm not sure if it's exactly what you want, but it flags the 8th.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 15:53:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593078#M76031</guid>
      <dc:creator>maguiremq</dc:creator>
      <dc:date>2019-10-01T15:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting a infromation from a cell in row from a data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593079#M76032</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/293189"&gt;@George3&lt;/a&gt;&amp;nbsp;and welcome to the SAS Support Communities!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To extract only the last observation before the first increase, you can use a look-ahead merge:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want(drop=nextval);
merge have have(keep=var1 rename=(var1=nextval) firstobs=2);
if nextval&amp;gt;var1&amp;gt;. then do;
  output;
  stop;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 15:52:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593079#M76032</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2019-10-01T15:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting a infromation from a cell in row from a data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593107#M76034</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perfect!&amp;nbsp; Thank you very much. &amp;nbsp;&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 16:39:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593107#M76034</guid>
      <dc:creator>George3</dc:creator>
      <dc:date>2019-10-01T16:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting a infromation from a cell in row from a data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593108#M76035</link>
      <description>&lt;P&gt;thank you for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 16:40:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593108#M76035</guid>
      <dc:creator>George3</dc:creator>
      <dc:date>2019-10-01T16:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting a infromation from a cell in row from a data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593133#M76037</link>
      <description>&lt;P&gt;In case you are reading in all the raw data merely to write out one observation, it is possible to modify the INPUT statement to stop processing once the condition is satisfied.&amp;nbsp; I.e. if you don't already have dataset HAVE, you don't need to create it:&amp;nbsp; In the case of big raw data files, this could be notably more efficient:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want (drop=nxt_:);
    infile datalines dsd dlm=",";
    input @1  Variable_names  : $char10.
            Var1            : 8.
            Var2            : 8.
            Var3            : 8.
            Var4            : 8.
            Var5            : 8.
            Var6            : 8.
    / nxt_varnames :$char10. nxt_var1 :8. @@;
	if nxt_var1&amp;gt;var1 then do; output; stop; end;
    datalines;
Row 1 , 5     , 1, 2, 3, 4, 5
Row 2 , 5     , 1, 2, 3, 4, 5
Row 3 , 4     , 1, 2, 3, 4, 5
Row 4 , 4     , 1, 2, 3, 4, 5
Row 5 , 3     , 1, 2, 3, 4, 5
Row 6 , 3     , 1, 2, 3, 4, 5
Row 7 , 2     , 1, 2, 3, 4, 5
Row 8 , 2     , 1, 2, 3, 4, 5
Row 9 , 5     , 1, 2, 3, 4, 5
Row 10, 5     , 1, 2, 3, 4, 5
Row 11, 6     , 1, 2, 3, 4, 5
Row 12, 7     , 1, 2, 3, 4, 5
Row 13, 8     , 1, 2, 3, 4, 5
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;OL&gt;
&lt;LI&gt;The "/" in the INPUT statement tells SAS to skip to the new raw data line.&lt;/LI&gt;
&lt;LI&gt;The trailing "@@" in the INPUT statement tells SAS to hold the input pointer after reading the preceding variable.&amp;nbsp; I.e. the pointer will be just after the second variable (VAR1) in the second data line.&amp;nbsp; This means that in the next iteration of the DATA step, the INPUT processing will start in the same location.&amp;nbsp; But the leader "@1" tells SAS to back up to column 1 of the current record (which was the 2nd record in the preceding iteration.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;regards,&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 17:10:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593133#M76037</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2019-10-01T17:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting a infromation from a cell in row from a data set</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593149#M76039</link>
      <description>&lt;P&gt;Hello Mark,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp; This isn't the route I need to take, but I will keep this if I need it in the future. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 17:43:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Extracting-a-infromation-from-a-cell-in-row-from-a-data-set/m-p/593149#M76039</guid>
      <dc:creator>George3</dc:creator>
      <dc:date>2019-10-01T17:43:17Z</dc:date>
    </item>
  </channel>
</rss>

