<?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: Unique records within a group of records in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880543#M347911</link>
    <description>What would the input dataset look like?&lt;BR /&gt;</description>
    <pubDate>Tue, 13 Jun 2023 20:42:35 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2023-06-13T20:42:35Z</dc:date>
    <item>
      <title>Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880508#M347899</link>
      <description>&lt;P&gt;Hello.&amp;nbsp; I'm having trouble with writing code to get a subset of data.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's what I have:&lt;/P&gt;&lt;P&gt;Data looks like this (I have thousands of records, but an example).&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;RECORD&lt;/TD&gt;&lt;TD&gt;Date_Start&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;I need to find unique values for the record and the date_start.&amp;nbsp; So, for this example, I would want only 1 unique record in a subset to have the record and the date_start, like this:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;RECORD&lt;/TD&gt;&lt;TD&gt;Date_Start&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also have this:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;RECORD&lt;/TD&gt;&lt;TD&gt;Date_Start&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;For this, I'd expect to have 3 unique records in the new subset, since all are unique with respects to the record and the date_start.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm relatively new to SAS, so it's a bit of a challenge for me.&amp;nbsp; I've tried sorting the set by record and date_start.&amp;nbsp; Then creating a new variable that's retained, using first. etc, but I'm getting every record of the main data set exported to my subset data set.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas are appreciate.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2023 18:22:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880508#M347899</guid>
      <dc:creator>JH74</dc:creator>
      <dc:date>2023-06-13T18:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880509#M347900</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=have;
    by record date_start;
run;

data want;
    set have;
    by record date_start;
    if first.date_start;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 Jun 2023 18:26:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880509#M347900</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-06-13T18:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880520#M347901</link>
      <description>Do you have other variables? If not SQL is an option. &lt;BR /&gt;&lt;BR /&gt;If you do, stick with a data step as demonstrated by PaigeMiller.</description>
      <pubDate>Tue, 13 Jun 2023 19:03:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880520#M347901</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-06-13T19:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880540#M347908</link>
      <description>&lt;P&gt;Thanks for this.&amp;nbsp; I have done this and I think I have not made my initial question clear enough.&amp;nbsp; I have to get two separate subsets.&amp;nbsp; One where the subset consists of instances like this:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;RECORD&lt;/TD&gt;&lt;TD&gt;Date_Start&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;So, this scenario would go to a new dataset called A.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then instances where it is like this (so one record and multiple start dates for that record):&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;RECORD&lt;/TD&gt;&lt;TD&gt;Date_Start&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;This would go to a new dataset called B.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I need to new sets, one that contains instances where one record and consistent dates.&amp;nbsp; Another that contains instances where one record and various dates.&amp;nbsp; I apologize for not being more detailed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2023 20:23:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880540#M347908</guid>
      <dc:creator>JH74</dc:creator>
      <dc:date>2023-06-13T20:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880543#M347911</link>
      <description>What would the input dataset look like?&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Jun 2023 20:42:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880543#M347911</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-06-13T20:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880545#M347912</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/442188"&gt;@JH74&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have done this and I think I have not made my initial question clear enough.&amp;nbsp; I have to get two separate subsets.&amp;nbsp; One where the subset consists of instances like this:&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;RECORD&lt;/TD&gt;
&lt;TD&gt;Date_Start&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;123456&lt;/TD&gt;
&lt;TD&gt;6/1/2023&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;123456&lt;/TD&gt;
&lt;TD&gt;6/1/2023&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;123456&lt;/TD&gt;
&lt;TD&gt;6/1/2023&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;So, this scenario would go to a new dataset called A.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then instances where it is like this (so one record and multiple start dates for that record):&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;RECORD&lt;/TD&gt;
&lt;TD&gt;Date_Start&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1234567&lt;/TD&gt;
&lt;TD&gt;6/1/2023&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1234567&lt;/TD&gt;
&lt;TD&gt;6/2/2023&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1234567&lt;/TD&gt;
&lt;TD&gt;6/3/2023&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;This would go to a new dataset called B.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, I need to new sets, one that contains instances where one record and consistent dates.&amp;nbsp; Another that contains instances where one record and various dates.&amp;nbsp; I apologize for not being more detailed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;And its still not clear to me. You are phrasing the rule in terms of consistent dates, and another case where there are various dates. What happens if a RECORD has both, say three records for RECORD 45678 on 6/1/2023 and then one record for 45678 on 6/2/2023 and two records for 45678 on 6/3/2023.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please give an explanation that covers all possibilities, or if a situation is impossible and never happens, state those cases as well.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2023 20:52:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880545#M347912</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-06-13T20:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880552#M347913</link>
      <description>&lt;P&gt;Thanks for your question.&amp;nbsp; The data can have any number of combinations.&amp;nbsp; The record can be one line or 50 lines.&amp;nbsp; However, the record value is always consistent whether 1 line or 50.&amp;nbsp; Each record can have either the same date_start value, or multiple different date_start values.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;RECORD&lt;/TD&gt;&lt;TD&gt;Date_Start&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234560&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234561&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234561&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234568&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234568&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234568&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, for records where the date_start is the same, those need to go to data set A.&amp;nbsp; For records where the date_start varies within the same record, those records need to go to data set B.&amp;nbsp; So I will have 2 data sets.&amp;nbsp; One contains records where the date_start never changes for any unique record.&amp;nbsp; The other contains records where the date_start varies for the unique record.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example of what is needed:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Data Set A&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;RECORD&lt;/TD&gt;&lt;TD&gt;Date_Start&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234560&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234561&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234561&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Data Set B&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;RECORD&lt;/TD&gt;&lt;TD&gt;Date_Start&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234567&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234568&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234568&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234568&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/1/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/2/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234569&lt;/TD&gt;&lt;TD&gt;6/3/2023&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 13 Jun 2023 21:54:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880552#M347913</guid>
      <dc:creator>JH74</dc:creator>
      <dc:date>2023-06-13T21:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880562#M347916</link>
      <description>&lt;P&gt;The input dataset has 3 total variables.&amp;nbsp; Only these 2 are relevant though, record and date_start.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2023 23:35:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880562#M347916</guid>
      <dc:creator>JH74</dc:creator>
      <dc:date>2023-06-13T23:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880715#M347981</link>
      <description>&lt;P&gt;SQL is easy enough.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
    input RECORD $ Date_Start mmddyy10.;
    format date_start mmddyys10.;
    cards;
1234560 6/1/2023
1234561 6/1/2023
1234561 6/1/2023
1234567 6/1/2023
1234567 6/2/2023
1234568 6/1/2023
1234568 6/2/2023
1234568 6/3/2023
1234569 6/1/2023
1234569 6/2/2023
1234569 6/2/2023
1234569 6/3/2023
1234569 6/3/2023
1234569 6/3/2023
;

proc sql;
    create table tableA as 
    select * 
    from have 
    where record in (select record 
                    from have 
                    group by record 
                    having max(Date_Start)=min(Date_Start)
                    );
                    
                    
    create table tableA as 
    select * 
    from have 
    where record not in (select record 
                    from have 
                    group by record 
                    having max(Date_Start)=min(Date_Start)
                    );
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Jun 2023 15:10:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880715#M347981</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-06-14T15:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880728#M347984</link>
      <description>&lt;P&gt;Thanks for your reply.&amp;nbsp; I have a question about the cards part.&amp;nbsp; I'm not familiar with that.&amp;nbsp; But, I will not know all of the values in the record or date_start field.&amp;nbsp; There are thousands of records in the dataset.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does that impact the cards code where you listed out the values?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2023 15:53:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880728#M347984</guid>
      <dc:creator>JH74</dc:creator>
      <dc:date>2023-06-14T15:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Unique records within a group of records</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880731#M347986</link>
      <description>That part is just to make fake data to test. Point it to your actual data set instead.</description>
      <pubDate>Wed, 14 Jun 2023 15:56:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unique-records-within-a-group-of-records/m-p/880731#M347986</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-06-14T15:56:58Z</dc:date>
    </item>
  </channel>
</rss>

