<?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 ERROR: BY variables are not properly sorted on data set WORK.dataset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878183#M347208</link>
    <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I try this code but I get an error in my data step (cfr Code and Log).&lt;BR /&gt;&lt;BR /&gt;Can someone tell me what I am doing wrong here ?&lt;BR /&gt;&lt;BR /&gt;Many thanks !&lt;BR /&gt;&lt;BR /&gt;Laura&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;PROC SORT DATA=NSIHHCDW.TU_NSIH_HOSP(where=(dt_valid_to='31DEC9999:00:00:00'dt)) OUT=nsih_hosp;
  BY idc_hosp_nihdi cd_hosp_site_tpe;
RUN;

DATA nsih_hosp;
  SET nsih_hosp(where=(dt_end_site is null));
  BY idc_hosp_nihdi ; *cd_hosp_site_tpe;
  IF first.idc_hosp_nihdi THEN OUTPUT ;
RUN;




&lt;STRONG&gt;                                                          The SAS System&lt;/STRONG&gt;
1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='test code DWH EXP EXT';
4          %LET _CLIENTPROCESSFLOWNAME='BeH-SAC';
5          %LET _CLIENTPROJECTPATH='\\Client\M$\S-SPECIFIC\BEHSAC\E. Analyses\SAS_projects\eguide_proj\BeH-SAC 2021_analysis6.egp';
6          %LET _CLIENTPROJECTPATHHOST='WIV-P-XAW02';
7          %LET _CLIENTPROJECTNAME='BeH-SAC 2021_analysis6.egp';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
10         
11         ODS _ALL_ CLOSE;
12         OPTIONS DEV=PNG;
13         GOPTIONS XPIXELS=0 YPIXELS=0;
14         FILENAME EGPDF TEMP;
15         ODS PDF(ID=EGPDF) FILE=EGPDF STYLE=Pearl;
NOTE: Writing ODS PDF(EGPDF) output to DISK destination "EGPDF", printer "PDF".
16         FILENAME EGSR TEMP;
17         ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR
18             STYLE=Pearl
19             STYLESHEET=(URL="file:///C:/Program%20Files%20(x86)/SASHome/x86/SASEnterpriseGuide/7.1/Styles/Pearl.css")
20             NOGTITLE
21             NOGFOOTNOTE
22             GPATH=&amp;amp;sasworklocation
SYMBOLGEN:  Macro variable SASWORKLOCATION resolves to "E:\Work\WorkApp\Lev3\SASAppRES\_TD9332_WIV-I-SAS03_\Prc2/"
23             ENCODING=UTF8
24             options(rolap="on")
25         ;
NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR
26         FILENAME EGXLSSX TEMP;
27         ODS EXCEL(ID=EGXLSSX) FILE=EGXLSSX STYLE=Excel
28         OPTIONS (
29          EMBEDDED_TITLES="no" EMBEDDED_FOOTNOTES="no"
30         );
31         
32         GOPTIONS ACCESSIBLE;
&lt;STRONG&gt;33         PROC SORT DATA=NSIHHCDW.TU_NSIH_HOSP(where=(dt_valid_to='31DEC9999:00:00:00'dt)) OUT=nsih_hosp;
34         BY idc_hosp_nihdi cd_hosp_site_tpe;
35         run;&lt;/STRONG&gt;
&lt;STRONG&gt;NOTE: Sorting was performed by the data source.&lt;BR /&gt;NOTE: There were 339 observations read from the data set NSIHHCDW.TU_NSIH_HOSP.
      WHERE dt_valid_to='  31DEC9999:00:00:00'DT;&lt;/STRONG&gt;NOTE: The data set WORK.NSIH_HOSP has 339 observations and 28 variables.
NOTE: Compressing data set WORK.NSIH_HOSP decreased size by 0.00 percent. 
      Compressed is 3 pages; un-compressed would require 3 pages.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      

36         
&lt;STRONG&gt;37         DATA nsih_hosp;
38           SET nsih_hosp(where=(dt_end_site is null));
39           BY idc_hosp_nihdi ; *cd_hosp_site_tpe;
40           IF first.idc_hosp_nihdi THEN OUTPUT ;
41         RUN;&lt;/STRONG&gt;

&lt;STRONG&gt;ERROR: BY variables are not properly sorted on data set WORK.NSIH_HOSP.&lt;/STRONG&gt;ID_TU_NSIH_HOSP=27901067 IDC_HOSP_FUSN_AGREM=998 IDC_HOSP_SITE=1201 IDC_HOSP_NIHDI=72099803 IDC_HOSP_NSIH=1104 CD_HOSP_SITE_TPE=SP
TX_HOSP_NAM=ZIEKENHUISNETWERK ANTWERPEN TX_HOSP_SITE_NAM=PZ STUIVENBERG TX_ADR=POTHOEKSTRAAT 109 CD_POSTAL_CODE=2060
TX_CITY=ANTWERPEN CD_REGIO=V TX_PROVINCE=Antwerpen TX_HOSP_TPE_FUSN=specialised TX_HOSP_TPE_SITE=specialised
TX_HOSP_TPE_NIHDI=specialised TX_HOSP_TCHNG_FUSN=non-teaching TX_HOSP_TCHNG_SITE=non-teaching TX_HOSP_TCHNG_NIHDI=non-teaching
TX_HOSP_SIZE_FUSN=small TX_HOSP_SIZE_SITE=small TX_HOSP_SIZE_NIHDI=small TX_HOSP_KIND=psychiatric
DT_VALID_FROM=26FEB2021:10:46:45.377000 DT_VALID_TO=31DEC9999:00:00:00.000000 IDC_HOSP_NIHDI_NEW=  DT_START_SITE=01JAN1960
DT_END_SITE=. FIRST.IDC_HOSP_NIHDI=1 LAST.IDC_HOSP_NIHDI=1 _ERROR_=1 _N_=289
NOTE: The SAS System stopped processing this step because of errors.
NOTE: There were 290 observations read from the data set WORK.NSIH_HOSP.
      WHERE dt_end_site is null;
WARNING: The data set WORK.NSIH_HOSP may be incomplete.  When this step was stopped there were 180 observations and 28 variables.
NOTE: Compressing data set WORK.NSIH_HOSP decreased size by 0.00 percent. 
      Compressed is 2 pages; un-compressed would require 2 pages.
WARNING: Data set WORK.NSIH_HOSP was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      

42         
43         GOPTIONS NOACCESSIBLE;
44         %LET _CLIENTTASKLABEL=;
45         %LET _CLIENTPROCESSFLOWNAME=;
46         %LET _CLIENTPROJECTPATH=;
47         %LET _CLIENTPROJECTPATHHOST=;
48         %LET _CLIENTPROJECTNAME=;
49         %LET _SASPROGRAMFILE=;
50         %LET _SASPROGRAMFILEHOST=;
51         
52         ;*';*";*/;quit;run;
53         ODS _ALL_ CLOSE;
NOTE: ODS PDF(EGPDF) printed no output. 
      (This sometimes results from failing to place a RUN statement before the ODS PDF(EGPDF) CLOSE statement.)
NOTE: Writing EXCEL(EGXLSSX) file: E:\Work\WorkApp\Lev3\SASAppRES\_TD9332_WIV-I-SAS03_\#LN01256
54         
55         
56         QUIT; RUN;
.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;LI-SPOILER&gt;&amp;nbsp;&lt;/LI-SPOILER&gt; &lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 May 2023 10:05:19 GMT</pubDate>
    <dc:creator>LauraBona92</dc:creator>
    <dc:date>2023-05-30T10:05:19Z</dc:date>
    <item>
      <title>ERROR: BY variables are not properly sorted on data set WORK.dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878183#M347208</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;I try this code but I get an error in my data step (cfr Code and Log).&lt;BR /&gt;&lt;BR /&gt;Can someone tell me what I am doing wrong here ?&lt;BR /&gt;&lt;BR /&gt;Many thanks !&lt;BR /&gt;&lt;BR /&gt;Laura&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;PROC SORT DATA=NSIHHCDW.TU_NSIH_HOSP(where=(dt_valid_to='31DEC9999:00:00:00'dt)) OUT=nsih_hosp;
  BY idc_hosp_nihdi cd_hosp_site_tpe;
RUN;

DATA nsih_hosp;
  SET nsih_hosp(where=(dt_end_site is null));
  BY idc_hosp_nihdi ; *cd_hosp_site_tpe;
  IF first.idc_hosp_nihdi THEN OUTPUT ;
RUN;




&lt;STRONG&gt;                                                          The SAS System&lt;/STRONG&gt;
1          ;*';*";*/;quit;run;
2          OPTIONS PAGENO=MIN;
3          %LET _CLIENTTASKLABEL='test code DWH EXP EXT';
4          %LET _CLIENTPROCESSFLOWNAME='BeH-SAC';
5          %LET _CLIENTPROJECTPATH='\\Client\M$\S-SPECIFIC\BEHSAC\E. Analyses\SAS_projects\eguide_proj\BeH-SAC 2021_analysis6.egp';
6          %LET _CLIENTPROJECTPATHHOST='WIV-P-XAW02';
7          %LET _CLIENTPROJECTNAME='BeH-SAC 2021_analysis6.egp';
8          %LET _SASPROGRAMFILE='';
9          %LET _SASPROGRAMFILEHOST='';
10         
11         ODS _ALL_ CLOSE;
12         OPTIONS DEV=PNG;
13         GOPTIONS XPIXELS=0 YPIXELS=0;
14         FILENAME EGPDF TEMP;
15         ODS PDF(ID=EGPDF) FILE=EGPDF STYLE=Pearl;
NOTE: Writing ODS PDF(EGPDF) output to DISK destination "EGPDF", printer "PDF".
16         FILENAME EGSR TEMP;
17         ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR
18             STYLE=Pearl
19             STYLESHEET=(URL="file:///C:/Program%20Files%20(x86)/SASHome/x86/SASEnterpriseGuide/7.1/Styles/Pearl.css")
20             NOGTITLE
21             NOGFOOTNOTE
22             GPATH=&amp;amp;sasworklocation
SYMBOLGEN:  Macro variable SASWORKLOCATION resolves to "E:\Work\WorkApp\Lev3\SASAppRES\_TD9332_WIV-I-SAS03_\Prc2/"
23             ENCODING=UTF8
24             options(rolap="on")
25         ;
NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR
26         FILENAME EGXLSSX TEMP;
27         ODS EXCEL(ID=EGXLSSX) FILE=EGXLSSX STYLE=Excel
28         OPTIONS (
29          EMBEDDED_TITLES="no" EMBEDDED_FOOTNOTES="no"
30         );
31         
32         GOPTIONS ACCESSIBLE;
&lt;STRONG&gt;33         PROC SORT DATA=NSIHHCDW.TU_NSIH_HOSP(where=(dt_valid_to='31DEC9999:00:00:00'dt)) OUT=nsih_hosp;
34         BY idc_hosp_nihdi cd_hosp_site_tpe;
35         run;&lt;/STRONG&gt;
&lt;STRONG&gt;NOTE: Sorting was performed by the data source.&lt;BR /&gt;NOTE: There were 339 observations read from the data set NSIHHCDW.TU_NSIH_HOSP.
      WHERE dt_valid_to='  31DEC9999:00:00:00'DT;&lt;/STRONG&gt;NOTE: The data set WORK.NSIH_HOSP has 339 observations and 28 variables.
NOTE: Compressing data set WORK.NSIH_HOSP decreased size by 0.00 percent. 
      Compressed is 3 pages; un-compressed would require 3 pages.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      

36         
&lt;STRONG&gt;37         DATA nsih_hosp;
38           SET nsih_hosp(where=(dt_end_site is null));
39           BY idc_hosp_nihdi ; *cd_hosp_site_tpe;
40           IF first.idc_hosp_nihdi THEN OUTPUT ;
41         RUN;&lt;/STRONG&gt;

&lt;STRONG&gt;ERROR: BY variables are not properly sorted on data set WORK.NSIH_HOSP.&lt;/STRONG&gt;ID_TU_NSIH_HOSP=27901067 IDC_HOSP_FUSN_AGREM=998 IDC_HOSP_SITE=1201 IDC_HOSP_NIHDI=72099803 IDC_HOSP_NSIH=1104 CD_HOSP_SITE_TPE=SP
TX_HOSP_NAM=ZIEKENHUISNETWERK ANTWERPEN TX_HOSP_SITE_NAM=PZ STUIVENBERG TX_ADR=POTHOEKSTRAAT 109 CD_POSTAL_CODE=2060
TX_CITY=ANTWERPEN CD_REGIO=V TX_PROVINCE=Antwerpen TX_HOSP_TPE_FUSN=specialised TX_HOSP_TPE_SITE=specialised
TX_HOSP_TPE_NIHDI=specialised TX_HOSP_TCHNG_FUSN=non-teaching TX_HOSP_TCHNG_SITE=non-teaching TX_HOSP_TCHNG_NIHDI=non-teaching
TX_HOSP_SIZE_FUSN=small TX_HOSP_SIZE_SITE=small TX_HOSP_SIZE_NIHDI=small TX_HOSP_KIND=psychiatric
DT_VALID_FROM=26FEB2021:10:46:45.377000 DT_VALID_TO=31DEC9999:00:00:00.000000 IDC_HOSP_NIHDI_NEW=  DT_START_SITE=01JAN1960
DT_END_SITE=. FIRST.IDC_HOSP_NIHDI=1 LAST.IDC_HOSP_NIHDI=1 _ERROR_=1 _N_=289
NOTE: The SAS System stopped processing this step because of errors.
NOTE: There were 290 observations read from the data set WORK.NSIH_HOSP.
      WHERE dt_end_site is null;
WARNING: The data set WORK.NSIH_HOSP may be incomplete.  When this step was stopped there were 180 observations and 28 variables.
NOTE: Compressing data set WORK.NSIH_HOSP decreased size by 0.00 percent. 
      Compressed is 2 pages; un-compressed would require 2 pages.
WARNING: Data set WORK.NSIH_HOSP was not replaced because this step was stopped.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.01 seconds
      

42         
43         GOPTIONS NOACCESSIBLE;
44         %LET _CLIENTTASKLABEL=;
45         %LET _CLIENTPROCESSFLOWNAME=;
46         %LET _CLIENTPROJECTPATH=;
47         %LET _CLIENTPROJECTPATHHOST=;
48         %LET _CLIENTPROJECTNAME=;
49         %LET _SASPROGRAMFILE=;
50         %LET _SASPROGRAMFILEHOST=;
51         
52         ;*';*";*/;quit;run;
53         ODS _ALL_ CLOSE;
NOTE: ODS PDF(EGPDF) printed no output. 
      (This sometimes results from failing to place a RUN statement before the ODS PDF(EGPDF) CLOSE statement.)
NOTE: Writing EXCEL(EGXLSSX) file: E:\Work\WorkApp\Lev3\SASAppRES\_TD9332_WIV-I-SAS03_\#LN01256
54         
55         
56         QUIT; RUN;
.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;LI-SPOILER&gt;&amp;nbsp;&lt;/LI-SPOILER&gt; &lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 10:05:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878183#M347208</guid>
      <dc:creator>LauraBona92</dc:creator>
      <dc:date>2023-05-30T10:05:19Z</dc:date>
    </item>
    <item>
      <title>how to fix ERROR: BY variables are not properly sorted on data set WORK.dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878205#M347211</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;the following data step isn't working, while I have sorted the dataset above.&lt;/P&gt;&lt;P&gt;Can someone help me out?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;PROC SORT DATA=NSIHHCDW.TU_NSIH_HOSP(where=(dt_valid_to='31DEC9999:00:00:00'dt)) OUT=nsih_hosp;
BY idc_hosp_nihdi cd_hosp_site_tpe;
run;

DATA nsih_hosp;
  SET nsih_hosp(where=(dt_end_site is null));
  BY idc_hosp_nihdi ; *cd_hosp_site_tpe;
  IF first.idc_hosp_nihdi THEN OUTPUT ;
RUN;

ERROR: BY variables are not properly sorted on data set WORK.NSIH_HOSP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 12:19:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878205#M347211</guid>
      <dc:creator>LauraBona92</dc:creator>
      <dc:date>2023-05-30T12:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to fix ERROR: BY variables are not properly sorted on data set WORK.dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878221#M347212</link>
      <description>&lt;P&gt;I guess in your SET statement WHERE dataset option affecting the previously sorted order.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;SET nsih_hosp(where=(dt_end_site is null));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Try to apply this where dataset option in your previous step.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 13:13:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878221#M347212</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2023-05-30T13:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: BY variables are not properly sorted on data set WORK.dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878575#M347209</link>
      <description>&lt;P&gt;Your log is stating that sorting is done by the host. And it looks like you're in Europe so I wonder if languages are being set differently. I would copy the data set down, sort locally and then see what happens.&amp;nbsp;The following should generate the desired results.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NULL can also be treated differently in DB than in SAS, so using MISSING() may help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;data nsih_hosp;
set NSIHHCDW.TU_NSIH_HOSP;
where dt_valid_to='31DEC9999:00:00:00'dt;
run;

PROC SORT DATA=nsih_hosp;
  BY idc_hosp_nihdi cd_hosp_site_tpe;
RUN;

*selects the first record from previous sort;
PROC SORT DATA=nsih_hosp(where=(missing(dt_end_site))) out=nsih_hosp2 NODUPKEY;
  BY idc_hosp_nihdi ;
RUN;



&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FYI - is anything in the log there private that should be deleted?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2023 20:52:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878575#M347209</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-05-31T20:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: BY variables are not properly sorted on data set WORK.dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878588#M347210</link>
      <description>&lt;P&gt;Try to find the issue yourself.&amp;nbsp; Look for the first place where the value goes DOWN.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA _null_;
  SET nsih_hosp(where=(dt_end_site is null));
  lag_id = lag(idc_hosp_nihdi);
  if idc_hosp_nihdi &amp;lt; lag_id then do;
      put (_n_ lag_id idc_hosp_nihdi ) (=);
      stop;
  end;
  format _all_;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 May 2023 23:06:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878588#M347210</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-05-31T23:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to fix ERROR: BY variables are not properly sorted on data set WORK.dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878812#M347213</link>
      <description>&lt;P&gt;Wow, that's a strange one.&amp;nbsp; &amp;nbsp;Try removing the SET statement where option, and place in into the PROC SORT where option as a compound filter.&amp;nbsp; &amp;nbsp; Next item:&amp;nbsp; &amp;nbsp;you really don't need the OUTPUT statement since the run statement will handle that automatically.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 19:50:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878812#M347213</guid>
      <dc:creator>donricardo</dc:creator>
      <dc:date>2023-06-01T19:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to fix ERROR: BY variables are not properly sorted on data set WORK.dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878831#M347214</link>
      <description>&lt;P&gt;Please do not post the same question multiple times.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 21:11:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-BY-variables-are-not-properly-sorted-on-data-set-WORK/m-p/878831#M347214</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-06-01T21:11:24Z</dc:date>
    </item>
  </channel>
</rss>

