<?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: Looking back to get records... in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/539936#M148873</link>
    <description>Any help please</description>
    <pubDate>Sun, 03 Mar 2019 20:13:23 GMT</pubDate>
    <dc:creator>Aidaan_10</dc:creator>
    <dc:date>2019-03-03T20:13:23Z</dc:date>
    <item>
      <title>Looking back to get records...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538831#M148363</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I need some help..I have some sample data below:&lt;/P&gt;&lt;P&gt;First Scenario:&lt;/P&gt;&lt;P&gt;If the result is missing I need to look back to get the result from the previous visit within each test. So for example subjid 1 for test ABC has missing result for DAY3 and WEEK1 then we get the result from DAY2 for both DAY3 and WEEK1. So basically we just have to keep looking back all the visits until we get the result. I did obtain the results by using Proc sql coalesce&amp;nbsp; when I had few visits but now I have like 80 visits and I cant program it using sql coalesce. I am looking for a macro to obtain the result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second Scenario:&lt;/P&gt;&lt;P&gt;The looking back of visits can be from another study too...as different studies are combined here. If suppose for a subject, result of one of the visit is missing from study XYZ(which is third study) then we go back to the study RWA(second study) to look for the result and if its still missing then we look into ABC(first study) to get the results. I don't have an example of sample data here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;For example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA HAVE;&lt;BR /&gt;infile datalines dlm=',';&lt;BR /&gt;INPUT SUBJID $ TEST $ TESTCD VISIT $ VISITN RESULT ;&lt;BR /&gt;DATALINES;&lt;BR /&gt;1,ABC,1,DAY1,1,12345&lt;BR /&gt;1,ABC,1,DAY2,2,32457&lt;BR /&gt;1,ABC,1,DAY3,3,.&lt;BR /&gt;1,ABC,1,WEEK1,4,.&lt;BR /&gt;1,ABC,1,WEEK2,5,13845&lt;BR /&gt;1,ABC,1,WEEK3,6,.&lt;BR /&gt;1,ABC,1,WEEK4,7,.&lt;BR /&gt;1,ABC,1,EW,8,45890&lt;BR /&gt;1,DEF,2,DAY1,1,145&lt;BR /&gt;1,DEF,2,DAY2,2,.&lt;BR /&gt;1,DEF,2,DAY3,3,13085&lt;BR /&gt;1,DEF,2,WEEK1,4,.&lt;BR /&gt;1,DEF,2,WEEK2,5,1.45&lt;BR /&gt;1,DEF,2,WEEK3,6,12.34&lt;BR /&gt;1,DEF,2,WEEK4,7,0&lt;BR /&gt;1,DEF,2,EW,8,.&lt;BR /&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 21:53:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538831#M148363</guid>
      <dc:creator>Aidaan_10</dc:creator>
      <dc:date>2019-02-26T21:53:01Z</dc:date>
    </item>
    <item>
      <title>Baseline calculation...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538824#M148365</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;I need some help..I have some sample data below:&lt;/P&gt;&lt;P&gt;First Scenario:&lt;/P&gt;&lt;P&gt;If the result is missing I need to look back to get the result from the previous visit within each test. So for example subjid 1 for test ABC has missing result for DAY3 and WEEK1 then we get the result from DAY2 for both DAY3 and WEEK1. So basically we just have to keep looking back all the visits until we get the result. I did obtain the results by using Proc sql coalesce&amp;nbsp; when I had few visits but now I have like 80 visits and I cant program it using sql coalesce. I am looking for a macro to obtain the result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second Scenario:&lt;/P&gt;&lt;P&gt;The looking back of visits can be from another study too...as different studies are combined here. If suppose for a subject, result of one of the visit is missing from study XYZ(which is third study) then we go back to the study RWA(second study) to look for the result and if its still missing then we look into ABC(first study) to get the results. I don't have an example of sample data here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;For example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DATA HAVE;&lt;BR /&gt;infile datalines dlm=',';&lt;BR /&gt;INPUT SUBJID $ TEST $ TESTCD VISIT $ VISITN RESULT ;&lt;BR /&gt;DATALINES;&lt;BR /&gt;1,ABC,1,DAY1,1,12345&lt;BR /&gt;1,ABC,1,DAY2,2,32457&lt;BR /&gt;1,ABC,1,DAY3,3,.&lt;BR /&gt;1,ABC,1,WEEK1,4,.&lt;BR /&gt;1,ABC,1,WEEK2,5,13845&lt;BR /&gt;1,ABC,1,WEEK3,6,.&lt;BR /&gt;1,ABC,1,WEEK4,7,.&lt;BR /&gt;1,ABC,1,EW,8,45890&lt;BR /&gt;1,DEF,2,DAY1,1,145&lt;BR /&gt;1,DEF,2,DAY2,2,.&lt;BR /&gt;1,DEF,2,DAY3,3,13085&lt;BR /&gt;1,DEF,2,WEEK1,4,.&lt;BR /&gt;1,DEF,2,WEEK2,5,1.45&lt;BR /&gt;1,DEF,2,WEEK3,6,12.34&lt;BR /&gt;1,DEF,2,WEEK4,7,0&lt;BR /&gt;1,DEF,2,EW,8,.&lt;BR /&gt;;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 21:40:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538824#M148365</guid>
      <dc:creator>Aidaan_10</dc:creator>
      <dc:date>2019-02-26T21:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Baseline calculation...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538834#M148366</link>
      <description>Please show what you expect as output.</description>
      <pubDate>Tue, 26 Feb 2019 22:03:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538834#M148366</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-26T22:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Looking back to get records...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538836#M148367</link>
      <description>Please don't post the same question multiple times.</description>
      <pubDate>Tue, 26 Feb 2019 22:05:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538836#M148367</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-26T22:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Looking back to get records...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538838#M148368</link>
      <description>&lt;P&gt;Sorry about that Reeza...I closed one.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 22:11:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538838#M148368</guid>
      <dc:creator>Aidaan_10</dc:creator>
      <dc:date>2019-02-26T22:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Baseline calculation...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538843#M148369</link>
      <description>&lt;P&gt;My expected final output would be like for study XYZ( third study):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;STUDYID&amp;nbsp; SUBJID&amp;nbsp; TEST&amp;nbsp; &amp;nbsp; &amp;nbsp;VISIT&amp;nbsp; &amp;nbsp; RESULT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;XYZ&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;ABC&amp;nbsp; &amp;nbsp; DAY1&amp;nbsp; &amp;nbsp; &amp;nbsp; 5678(Final result from study1 ABC)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;XYZ&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;ABC&amp;nbsp; &amp;nbsp; DAY2&amp;nbsp; &amp;nbsp; &amp;nbsp; 32457&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;XYZ&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;ABC&amp;nbsp; &amp;nbsp; DAY3&amp;nbsp; &amp;nbsp; &amp;nbsp; 32457(Day2 result is being populated here)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;XYZ&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;ABC&amp;nbsp; &amp;nbsp; WEEK1&amp;nbsp; &amp;nbsp; 32457(Day2 result is being populated here)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;XYZ&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;ABC&amp;nbsp; &amp;nbsp;WEEK2&amp;nbsp; &amp;nbsp; 13845&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;XYZ&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;ABC&amp;nbsp; &amp;nbsp;WEEK3&amp;nbsp; 13845(WEEK2 result is being populated here)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;XYZ&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;ABC&amp;nbsp; &amp;nbsp;WEEK4&amp;nbsp; 13845(WEEK2 result is being populated here)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;XYZ&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;ABC&amp;nbsp; &amp;nbsp;EW&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 45890&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If suppose DAY1 is missing result in study3 we go back to study2&amp;nbsp;&lt;/P&gt;&lt;P&gt;study RWA( second study):&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;STUDYID SUBJID&amp;nbsp; TEST&amp;nbsp; &amp;nbsp; &amp;nbsp;VISIT&amp;nbsp; &amp;nbsp; RESULT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RWA&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;ABC&amp;nbsp; &amp;nbsp; DAY1&amp;nbsp; &amp;nbsp; &amp;nbsp;missing&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RWA&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;ABC&amp;nbsp; &amp;nbsp; DAY2&amp;nbsp; &amp;nbsp; &amp;nbsp; 32457&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RWA&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;ABC&amp;nbsp; &amp;nbsp; DAY3&amp;nbsp; &amp;nbsp; &amp;nbsp; 12456&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RWA&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;ABC&amp;nbsp; &amp;nbsp; WEEK1&amp;nbsp; &amp;nbsp;3456&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RWA&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;ABC&amp;nbsp; &amp;nbsp;WEEK2&amp;nbsp; &amp;nbsp; 13845&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RWA&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;ABC&amp;nbsp; &amp;nbsp;WEEK3&amp;nbsp; &amp;nbsp; 1.12&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RWA&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;ABC&amp;nbsp; &amp;nbsp;WEEK4&amp;nbsp; &amp;nbsp; 0.00&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RWA&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;ABC&amp;nbsp; &amp;nbsp;EW&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 45890&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So If the result is still missing for DAY1 from second study we go back to First study(ABC) for the result.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;study ABC( First study):&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;STUDYID SUBJID&amp;nbsp; &amp;nbsp; TEST&amp;nbsp; &amp;nbsp; &amp;nbsp;VISIT&amp;nbsp; &amp;nbsp; RESULT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ABC&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;ABC&amp;nbsp; &amp;nbsp; DAY1&amp;nbsp; &amp;nbsp; 5678&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ABC&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;ABC&amp;nbsp; &amp;nbsp; DAY2&amp;nbsp; &amp;nbsp; &amp;nbsp; 32457&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ABC&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;ABC&amp;nbsp; &amp;nbsp; DAY3&amp;nbsp; &amp;nbsp; &amp;nbsp; 12456&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ABC&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;ABC&amp;nbsp; &amp;nbsp; WEEK1&amp;nbsp; &amp;nbsp;3456&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ABC&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;ABC&amp;nbsp; &amp;nbsp;WEEK2&amp;nbsp; &amp;nbsp; 13845&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ABC&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;ABC&amp;nbsp; &amp;nbsp;WEEK3&amp;nbsp; &amp;nbsp; 1.12&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ABC&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;ABC&amp;nbsp; &amp;nbsp;WEEK4&amp;nbsp; &amp;nbsp; 0.00&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ABC&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;ABC&amp;nbsp; &amp;nbsp;EW&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 45890&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 22:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/538843#M148369</guid>
      <dc:creator>Aidaan_10</dc:creator>
      <dc:date>2019-02-26T22:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Looking back to get records...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/539936#M148873</link>
      <description>Any help please</description>
      <pubDate>Sun, 03 Mar 2019 20:13:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/539936#M148873</guid>
      <dc:creator>Aidaan_10</dc:creator>
      <dc:date>2019-03-03T20:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Baseline calculation...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/539942#M148876</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/174192"&gt;@Aidaan_10&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please make sure that your expected result matches the sample data provided. There is not study&amp;nbsp;&lt;SPAN&gt;RWA in your sample data.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also: Is there really no visit date in your data. And if not: If you're just picking sequence numbers of visits then isn't it possible that they are on different dates between studies and though you could actually pick a later date if using data from another study?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2019 21:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/539942#M148876</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-03-03T21:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Looking back to get records...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/539943#M148877</link>
      <description>Hi Patrick visit or study date is not considered...I just need the results for baseline calculations.</description>
      <pubDate>Sun, 03 Mar 2019 21:59:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/539943#M148877</guid>
      <dc:creator>Aidaan_10</dc:creator>
      <dc:date>2019-03-03T21:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Looking back to get records...</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/539987#M148892</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/174192"&gt;@Aidaan_10&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You really need to provide sample data which allows us to create your desired data. How else do you expect us to come up with tested code?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 10:02:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Looking-back-to-get-records/m-p/539987#M148892</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-03-04T10:02:31Z</dc:date>
    </item>
  </channel>
</rss>

