<?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: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918237#M361701</link>
    <description>&lt;P&gt;I'd use PROC FedSQL because it supports the LIMIT clause. Like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Make fake data to work with */
data WORK.EXPOSURE;
  infile datalines dsd truncover;
  input Patient:$200. DoseDate:MMDDYY10.;
  format DoseDate MMDDYY10.;
datalines4;
"Thomas, Katherin",01/05/2024
"Feldmann, Anthony",01/19/2024
"Tennyson, Sam",01/09/2024
"Curry, Kristi",01/10/2024
"Smith, Wanda",01/16/2024
"Hoadley, James",01/04/2024
"Wenzel, Calvin",01/30/2024
"Ryan, Jennifer",01/18/2024
"Reyes, Ricky",01/22/2024
"Attwood, James",01/05/2024
"Kaye, Echo",01/03/2024
"Christia, Anna",01/15/2024
"Cheeks, Linda",01/30/2024
"Yates, Agnes",01/04/2024
"Snider, Regina",01/05/2024
"Robinson, Nichole",01/12/2024
"Ramirez, Kevin",01/20/2024
"Carolan, Kris",01/20/2024
"Jenkins, Thomas",01/21/2024
"Tillman, Micheal",01/28/2024
"Gibbs, Wayne",01/10/2024
"Profit, Ronald",01/15/2024
"Morrell, Suzanna",01/28/2024
"Snelling, Miguel",01/23/2024
"Hutching, Randall",01/16/2024
"Schweitzer, Veronica",01/25/2024
"McDonald, Nathan",01/12/2024
"Kelley, Robert",01/03/2024
"Carroll, John",01/16/2024
"Shipley, Lewis",01/03/2024
;;;;

/* Create the report */
proc FedSQL number;
select Patient, DoseDate
	from exposure
	order by DoseDate
	limit 10
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure FEDSQL: Query Results" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r b header" scope="col"&gt;Row&lt;/TH&gt;
&lt;TH class="l b header" scope="col"&gt;Patient&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;DoseDate&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="l data"&gt;Shipley, Lewis&lt;/TD&gt;
&lt;TD class="r data"&gt;01/03/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;2&lt;/TH&gt;
&lt;TD class="l data"&gt;Kaye, Echo&lt;/TD&gt;
&lt;TD class="r data"&gt;01/03/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;3&lt;/TH&gt;
&lt;TD class="l data"&gt;Kelley, Robert&lt;/TD&gt;
&lt;TD class="r data"&gt;01/03/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;4&lt;/TH&gt;
&lt;TD class="l data"&gt;Hoadley, James&lt;/TD&gt;
&lt;TD class="r data"&gt;01/04/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;5&lt;/TH&gt;
&lt;TD class="l data"&gt;Yates, Agnes&lt;/TD&gt;
&lt;TD class="r data"&gt;01/04/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;6&lt;/TH&gt;
&lt;TD class="l data"&gt;Thomas, Katherin&lt;/TD&gt;
&lt;TD class="r data"&gt;01/05/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;7&lt;/TH&gt;
&lt;TD class="l data"&gt;Snider, Regina&lt;/TD&gt;
&lt;TD class="r data"&gt;01/05/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;8&lt;/TH&gt;
&lt;TD class="l data"&gt;Attwood, James&lt;/TD&gt;
&lt;TD class="r data"&gt;01/05/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;9&lt;/TH&gt;
&lt;TD class="l data"&gt;Tennyson, Sam&lt;/TD&gt;
&lt;TD class="r data"&gt;01/09/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;10&lt;/TH&gt;
&lt;TD class="l data"&gt;Gibbs, Wayne&lt;/TD&gt;
&lt;TD class="r data"&gt;01/10/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Wed, 28 Feb 2024 15:32:24 GMT</pubDate>
    <dc:creator>SASJedi</dc:creator>
    <dc:date>2024-02-28T15:32:24Z</dc:date>
    <item>
      <title>Take first 10 patients (assigned as char) based on the first 10 that received a dose in date order</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918227#M361696</link>
      <description>&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In PROC SQL , assuming the dataset is called&amp;nbsp; exposure,&amp;nbsp; and we have 20 plus patients in the dataset what would be the best&amp;nbsp; &amp;nbsp;proc sql code please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 15:01:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918227#M361696</guid>
      <dc:creator>Suki99</dc:creator>
      <dc:date>2024-02-28T15:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918234#M361699</link>
      <description>&lt;P&gt;Since SQL does not generally process in records in an predictable order then SQL is a poor choice for anything that requires "first" anything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best is to provide an example of the type of data that you have, describe how to recognize "first 10" (not always obvious to other folks) and expected output. Data can be dummy but should behave like your actual data set. Best is to provide example data in the form of a working data step.&lt;/P&gt;
&lt;P&gt;Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt; will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the &amp;lt;/&amp;gt; icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 15:25:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918234#M361699</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-02-28T15:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918237#M361701</link>
      <description>&lt;P&gt;I'd use PROC FedSQL because it supports the LIMIT clause. Like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Make fake data to work with */
data WORK.EXPOSURE;
  infile datalines dsd truncover;
  input Patient:$200. DoseDate:MMDDYY10.;
  format DoseDate MMDDYY10.;
datalines4;
"Thomas, Katherin",01/05/2024
"Feldmann, Anthony",01/19/2024
"Tennyson, Sam",01/09/2024
"Curry, Kristi",01/10/2024
"Smith, Wanda",01/16/2024
"Hoadley, James",01/04/2024
"Wenzel, Calvin",01/30/2024
"Ryan, Jennifer",01/18/2024
"Reyes, Ricky",01/22/2024
"Attwood, James",01/05/2024
"Kaye, Echo",01/03/2024
"Christia, Anna",01/15/2024
"Cheeks, Linda",01/30/2024
"Yates, Agnes",01/04/2024
"Snider, Regina",01/05/2024
"Robinson, Nichole",01/12/2024
"Ramirez, Kevin",01/20/2024
"Carolan, Kris",01/20/2024
"Jenkins, Thomas",01/21/2024
"Tillman, Micheal",01/28/2024
"Gibbs, Wayne",01/10/2024
"Profit, Ronald",01/15/2024
"Morrell, Suzanna",01/28/2024
"Snelling, Miguel",01/23/2024
"Hutching, Randall",01/16/2024
"Schweitzer, Veronica",01/25/2024
"McDonald, Nathan",01/12/2024
"Kelley, Robert",01/03/2024
"Carroll, John",01/16/2024
"Shipley, Lewis",01/03/2024
;;;;

/* Create the report */
proc FedSQL number;
select Patient, DoseDate
	from exposure
	order by DoseDate
	limit 10
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="center"&gt;
&lt;TABLE class="table" summary="Procedure FEDSQL: Query Results" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="r b header" scope="col"&gt;Row&lt;/TH&gt;
&lt;TH class="l b header" scope="col"&gt;Patient&lt;/TH&gt;
&lt;TH class="r b header" scope="col"&gt;DoseDate&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;1&lt;/TH&gt;
&lt;TD class="l data"&gt;Shipley, Lewis&lt;/TD&gt;
&lt;TD class="r data"&gt;01/03/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;2&lt;/TH&gt;
&lt;TD class="l data"&gt;Kaye, Echo&lt;/TD&gt;
&lt;TD class="r data"&gt;01/03/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;3&lt;/TH&gt;
&lt;TD class="l data"&gt;Kelley, Robert&lt;/TD&gt;
&lt;TD class="r data"&gt;01/03/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;4&lt;/TH&gt;
&lt;TD class="l data"&gt;Hoadley, James&lt;/TD&gt;
&lt;TD class="r data"&gt;01/04/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;5&lt;/TH&gt;
&lt;TD class="l data"&gt;Yates, Agnes&lt;/TD&gt;
&lt;TD class="r data"&gt;01/04/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;6&lt;/TH&gt;
&lt;TD class="l data"&gt;Thomas, Katherin&lt;/TD&gt;
&lt;TD class="r data"&gt;01/05/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;7&lt;/TH&gt;
&lt;TD class="l data"&gt;Snider, Regina&lt;/TD&gt;
&lt;TD class="r data"&gt;01/05/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;8&lt;/TH&gt;
&lt;TD class="l data"&gt;Attwood, James&lt;/TD&gt;
&lt;TD class="r data"&gt;01/05/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;9&lt;/TH&gt;
&lt;TD class="l data"&gt;Tennyson, Sam&lt;/TD&gt;
&lt;TD class="r data"&gt;01/09/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="r rowheader" scope="row"&gt;10&lt;/TH&gt;
&lt;TD class="l data"&gt;Gibbs, Wayne&lt;/TD&gt;
&lt;TD class="r data"&gt;01/10/2024&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 28 Feb 2024 15:32:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918237#M361701</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2024-02-28T15:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918242#M361704</link>
      <description>&lt;P&gt;What should be done if the 10th and 11th dates are equal? Should the output have 10 observations, or 11?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other than that, this is easy to do if you drop the (in my opinion, wrong-headed) requirement to use PROC SQL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=exposure out=exposure_sorted(obs=10);
    by date;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also very easy to provide an answer if there are ties and you need to select more than 10 (because there are many records with the same date).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please note that 3 people have responded and none wants to provide an SQL solution. It is the wrong tool here.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 16:53:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918242#M361704</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-02-28T16:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918270#M361714</link>
      <description>&lt;P&gt;Hi SAS Jedi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I forgot to mention&amp;nbsp; , a patient can have multiple dose dates&amp;nbsp; , ie future visits. So i would need a group of some sort.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 17:05:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918270#M361714</guid>
      <dc:creator>Suki99</dc:creator>
      <dc:date>2024-02-28T17:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918274#M361716</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/188649"&gt;@Suki99&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I forgot to mention&amp;nbsp; , a patient can have multiple dose dates&amp;nbsp; , ie future visits. So i would need a group of some sort.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Explain this in more detail. Explain how this affects the input data. Explain how this affects the desired output.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 20:11:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918274#M361716</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-02-28T20:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918327#M361737</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/188649"&gt;@Suki99&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You can use Proc fedSQL as suggested by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13728"&gt;@SASJedi&lt;/a&gt;&amp;nbsp;if you have SAS Viya.&lt;BR /&gt;However, if you are using SAS 9.4 and don't have FedSQL, you can try the following. The output table will have the&amp;nbsp; first 10 ruws from the&amp;nbsp; result set. I have used the data from the post by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13728"&gt;@SASJedi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql outobs=10;
create table work.want as
select * from exposure 
order by dosedate;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 28 Feb 2024 20:51:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918327#M361737</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-02-28T20:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918355#M361749</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/188649"&gt;@Suki99&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi SAS Jedi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I forgot to mention&amp;nbsp; , a patient can have multiple dose dates&amp;nbsp; , ie future visits. So i would need a group of some sort.&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Interpreting your statements that you just want to consider the earliest date per patient and that you don't care about ties below amended code from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13728"&gt;@SASJedi&lt;/a&gt;&amp;nbsp;should do.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc FedSQL number;
  select Patient, min(DoseDate) as DoseDate
	from work.exposure
  group by patient
	order by DoseDate, Patient
	limit 10
;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you do care about ties then consider code as below. Depending on how you choose to deal with ties (ties=...) the result will of course differ.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  create view work.v_inter as
  select patient, min(DoseDate) as DoseDate format=date9.
  from work.have
  group by Patient
  order by DoseDate
  ;
quit;

proc rank data=v_inter ties=dense out=work.ranked(where=(rank&amp;lt;=10));
  var DoseDate;
  ranks rank;
run;

proc print data=ranked;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1709172420973.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/94232i30E435E589178685/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1709172420973.png" alt="Patrick_0-1709172420973.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 02:10:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918355#M361749</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2024-02-29T02:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918397#M361754</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/131732"&gt;@Sajid01&lt;/a&gt;&amp;nbsp;PROC FedSQL is part of Base SAS since the release of SAS 9.4 in 2013. If you have access to SAS 9.4, you can use PROC FedSQL.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 13:05:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918397#M361754</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2024-02-29T13:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Take first 10 patients (assigned as char) based on the first 10 that received a dose in date ord</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918405#M361759</link>
      <description>&lt;P&gt;hanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13728"&gt;@SASJedi&lt;/a&gt;&amp;nbsp; for the update.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 14:30:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Take-first-10-patients-assigned-as-char-based-on-the-first-10/m-p/918405#M361759</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2024-02-29T14:30:43Z</dc:date>
    </item>
  </channel>
</rss>

