<?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: solve error 180-322 in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/solve-error-180-322/m-p/592996#M15444</link>
    <description>&lt;P&gt;Thanks, I solve it simply by moving the data mer03 to the bottom line.&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15475"&gt;@andreas_lds&lt;/a&gt;&amp;nbsp; Thank you so so much&lt;/P&gt;&lt;PRE&gt;proc sort data=PAXBAG.baggage_info_1; by Pax_Key;
proc sort data=PDETAIL.pax_detail_1; by Pax_Key;
DATA mer03; merge PAXBAG.BAGGAGE_INFO_1 PDETAIL.PAX_DETAIL_1; by Pax_Key; 	
	
run;&lt;/PRE&gt;</description>
    <pubDate>Tue, 01 Oct 2019 11:41:53 GMT</pubDate>
    <dc:creator>gkpf</dc:creator>
    <dc:date>2019-10-01T11:41:53Z</dc:date>
    <item>
      <title>solve error 180-322</title>
      <link>https://communities.sas.com/t5/New-SAS-User/solve-error-180-322/m-p/592984#M15440</link>
      <description>&lt;P&gt;Hi, I'm new with SAS and I have a little problem when I&amp;nbsp; merge two data set.&lt;/P&gt;&lt;P&gt;when I run the below code, an error 180-322 occur and I dont know why, I check my semicolon and it seems just fine.&lt;/P&gt;&lt;P&gt;plz help.&lt;/P&gt;&lt;PRE&gt;DATA mer03;
	proc sort data=PAXBAG.baggage_info_1; by Pax_Key;run;
	proc sort data=PDETAIL.pax_detail_1; by Pax_Key;run;
	merge PAXBAG.baggage_info_1 PDETAIL.pax_detail_1;
	by Pax_Key;
run;&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Oct 2019 11:07:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/solve-error-180-322/m-p/592984#M15440</guid>
      <dc:creator>gkpf</dc:creator>
      <dc:date>2019-10-01T11:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: solve error 180-322</title>
      <link>https://communities.sas.com/t5/New-SAS-User/solve-error-180-322/m-p/592986#M15441</link>
      <description>&lt;P&gt;i forget to put the error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;29 merge PAXBAG.baggage_info_1,PDETAIL.pax_detail_1;&lt;BR /&gt;_____&lt;BR /&gt;180&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;2 SAS 系統 2019年10月 1日 星期二 下午06時40分50秒&lt;/P&gt;&lt;P&gt;29 by Pax_Key;&lt;BR /&gt;__&lt;BR /&gt;180&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 11:13:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/solve-error-180-322/m-p/592986#M15441</guid>
      <dc:creator>gkpf</dc:creator>
      <dc:date>2019-10-01T11:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: solve error 180-322</title>
      <link>https://communities.sas.com/t5/New-SAS-User/solve-error-180-322/m-p/592994#M15443</link>
      <description>&lt;P&gt;You can't use proc sort in a data-step. Try:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=PAXBAG.baggage_info_1; 
  by Pax_Key;
run;

proc sort data=PDETAIL.pax_detail_1; 
  by Pax_Key;
run;

data mer03;
	merge PAXBAG.baggage_info_1 PDETAIL.pax_detail_1;
	by Pax_Key;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2019 11:33:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/solve-error-180-322/m-p/592994#M15443</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-10-01T11:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: solve error 180-322</title>
      <link>https://communities.sas.com/t5/New-SAS-User/solve-error-180-322/m-p/592996#M15444</link>
      <description>&lt;P&gt;Thanks, I solve it simply by moving the data mer03 to the bottom line.&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15475"&gt;@andreas_lds&lt;/a&gt;&amp;nbsp; Thank you so so much&lt;/P&gt;&lt;PRE&gt;proc sort data=PAXBAG.baggage_info_1; by Pax_Key;
proc sort data=PDETAIL.pax_detail_1; by Pax_Key;
DATA mer03; merge PAXBAG.BAGGAGE_INFO_1 PDETAIL.PAX_DETAIL_1; by Pax_Key; 	
	
run;&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Oct 2019 11:41:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/solve-error-180-322/m-p/592996#M15444</guid>
      <dc:creator>gkpf</dc:creator>
      <dc:date>2019-10-01T11:41:53Z</dc:date>
    </item>
  </channel>
</rss>

