<?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: ERROR: More positional parameters found than defined. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ERROR-More-positional-parameters-found-than-defined/m-p/755990#M238614</link>
    <description>&lt;PRE&gt;%HR(&lt;STRONG&gt;&lt;FONT size="4" color="#FF0000"&gt;x=&lt;/FONT&gt;&lt;/STRONG&gt;Treatment_Year);
%HR(ace_arb);&lt;/PRE&gt;
&lt;P&gt;Looking at your code closely, you can see the macro calls that work are formatted differently from the macro calls that do not, specifically you're missing the X= portion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/140136"&gt;@Denali&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was trying to conduct Cox proportional hazard model using below macro. However, it stopped and gave me error messages "&amp;nbsp;ERROR: More positional parameters found than defined." for the last 6 variables.&lt;/P&gt;
&lt;P&gt;%HR(ace_arb);&lt;BR /&gt;%HR(ccb);&lt;BR /&gt;%HR(asa);&lt;BR /&gt;%HR(statin);&lt;BR /&gt;%HR(bb);&lt;BR /&gt;%HR(Stage);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is my SAS macro code:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;libname out xlsx "H:\Data\HR_Categorical_RS.xlsx";&lt;BR /&gt;%macro HR(x=);&lt;BR /&gt;%let outputName=_PE%substr(%cmpres(&amp;amp;x.),1,%sysfunc(min(%length(&amp;amp;x.),29)));&lt;BR /&gt;ods graphics off;&lt;BR /&gt;ods output ParameterEstimates=&amp;amp;outputName.;&lt;/P&gt;
&lt;P&gt;proc phreg data = RS1;&lt;BR /&gt;class &amp;amp;x;&lt;BR /&gt;model CTOX53cox_interval_1_6_21*CTOX53__within_1_year_of_trastuz(0) = &amp;amp;x /rl;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;ods output close;&lt;BR /&gt;ods graphics on;&lt;/P&gt;
&lt;P&gt;%mend HR;&lt;/P&gt;
&lt;P&gt;%HR(x=Age_C);&lt;BR /&gt;%HR(x=BMI_C );&lt;BR /&gt;%HR(x=Anthracycline__current_or_prior_);&lt;BR /&gt;%HR(x=XRT);&lt;BR /&gt;%HR(x=ER_cat);&lt;BR /&gt;%HR(x=htn);&lt;BR /&gt;%HR(x=dm);&lt;BR /&gt;%HR(x=hl);&lt;BR /&gt;%HR(x=cad);&lt;BR /&gt;%HR(x=arrhythmia__AY_adjudicated_1_202);&lt;BR /&gt;%HR(x=Smoking);&lt;BR /&gt;%HR(x=LVEF_C);&lt;BR /&gt;%HR(x=Race);&lt;BR /&gt;%HR(x=PR);&lt;BR /&gt;%HR(x=Treatment_Year);&lt;BR /&gt;%HR(ace_arb);&lt;BR /&gt;%HR(ccb);&lt;BR /&gt;%HR(asa);&lt;BR /&gt;%HR(statin);&lt;BR /&gt;%HR(bb);&lt;BR /&gt;%HR(Stage);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is the log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2705 %HR(x=Race);&lt;/P&gt;
&lt;P&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The data set WORK._PERACE has 2 observations and 11 variables.&lt;BR /&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.04 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;2706 %HR(x=PR);&lt;/P&gt;
&lt;P&gt;NOTE: 1 observations were deleted due either to missing or invalid values&lt;BR /&gt;for the time, censoring, frequency or explanatory variables or to&lt;BR /&gt;invalid operations in generating the values for some of the&lt;BR /&gt;explanatory variables.&lt;BR /&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The data set WORK._PEPR has 1 observations and 11 variables.&lt;BR /&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;2707 %HR(x=Treatment_Year);&lt;/P&gt;
&lt;P&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The data set WORK._PETREATMENT_YEAR has 4 observations and 11&lt;BR /&gt;variables.&lt;BR /&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2708 %HR(ace_arb);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2709 %HR(ccb);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2710 %HR(asa);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2711 %HR(statin);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2712 %HR(bb);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2713 %HR(Stage);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me with trouble shooting my code? Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Jul 2021 17:13:45 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2021-07-22T17:13:45Z</dc:date>
    <item>
      <title>ERROR: More positional parameters found than defined.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-More-positional-parameters-found-than-defined/m-p/755983#M238610</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was trying to conduct Cox proportional hazard model using below macro. However, it stopped and gave me error messages "&amp;nbsp;ERROR: More positional parameters found than defined." for the last 6 variables.&lt;/P&gt;
&lt;P&gt;%HR(ace_arb);&lt;BR /&gt;%HR(ccb);&lt;BR /&gt;%HR(asa);&lt;BR /&gt;%HR(statin);&lt;BR /&gt;%HR(bb);&lt;BR /&gt;%HR(Stage);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is my SAS macro code:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;libname out xlsx "H:\Data\HR_Categorical_RS.xlsx";&lt;BR /&gt;%macro HR(x=);&lt;BR /&gt;%let outputName=_PE%substr(%cmpres(&amp;amp;x.),1,%sysfunc(min(%length(&amp;amp;x.),29)));&lt;BR /&gt;ods graphics off;&lt;BR /&gt;ods output ParameterEstimates=&amp;amp;outputName.;&lt;/P&gt;
&lt;P&gt;proc phreg data = RS1;&lt;BR /&gt;class &amp;amp;x;&lt;BR /&gt;model CTOX53cox_interval_1_6_21*CTOX53__within_1_year_of_trastuz(0) = &amp;amp;x /rl;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;ods output close;&lt;BR /&gt;ods graphics on;&lt;/P&gt;
&lt;P&gt;%mend HR;&lt;/P&gt;
&lt;P&gt;%HR(x=Age_C);&lt;BR /&gt;%HR(x=BMI_C );&lt;BR /&gt;%HR(x=Anthracycline__current_or_prior_);&lt;BR /&gt;%HR(x=XRT);&lt;BR /&gt;%HR(x=ER_cat);&lt;BR /&gt;%HR(x=htn);&lt;BR /&gt;%HR(x=dm);&lt;BR /&gt;%HR(x=hl);&lt;BR /&gt;%HR(x=cad);&lt;BR /&gt;%HR(x=arrhythmia__AY_adjudicated_1_202);&lt;BR /&gt;%HR(x=Smoking);&lt;BR /&gt;%HR(x=LVEF_C);&lt;BR /&gt;%HR(x=Race);&lt;BR /&gt;%HR(x=PR);&lt;BR /&gt;%HR(x=Treatment_Year);&lt;BR /&gt;%HR(ace_arb);&lt;BR /&gt;%HR(ccb);&lt;BR /&gt;%HR(asa);&lt;BR /&gt;%HR(statin);&lt;BR /&gt;%HR(bb);&lt;BR /&gt;%HR(Stage);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is the log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2705 %HR(x=Race);&lt;/P&gt;
&lt;P&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The data set WORK._PERACE has 2 observations and 11 variables.&lt;BR /&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.04 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;2706 %HR(x=PR);&lt;/P&gt;
&lt;P&gt;NOTE: 1 observations were deleted due either to missing or invalid values&lt;BR /&gt;for the time, censoring, frequency or explanatory variables or to&lt;BR /&gt;invalid operations in generating the values for some of the&lt;BR /&gt;explanatory variables.&lt;BR /&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The data set WORK._PEPR has 1 observations and 11 variables.&lt;BR /&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;2707 %HR(x=Treatment_Year);&lt;/P&gt;
&lt;P&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The data set WORK._PETREATMENT_YEAR has 4 observations and 11&lt;BR /&gt;variables.&lt;BR /&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2708 %HR(ace_arb);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2709 %HR(ccb);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2710 %HR(asa);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2711 %HR(statin);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2712 %HR(bb);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2713 %HR(Stage);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me with trouble shooting my code? Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 16:46:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-More-positional-parameters-found-than-defined/m-p/755983#M238610</guid>
      <dc:creator>Denali</dc:creator>
      <dc:date>2021-07-22T16:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: More positional parameters found than defined.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-More-positional-parameters-found-than-defined/m-p/755986#M238612</link>
      <description>&lt;PRE&gt;2708 %HR(ace_arb);
ERROR: More positional parameters found than defined.&lt;/PRE&gt;
&lt;P&gt;You did not define a positional parameter for macro %HR. And when you call the macro this way, you have a positional paramter &lt;FONT face="courier new,courier"&gt;ace_arb&lt;/FONT&gt;. The macro %HR as defined only accepts a keyword parameter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, this would work&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%hr(x=ace_arb)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 17:01:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-More-positional-parameters-found-than-defined/m-p/755986#M238612</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-07-22T17:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: More positional parameters found than defined.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-More-positional-parameters-found-than-defined/m-p/755988#M238613</link>
      <description>&lt;P&gt;When you define a macro with parameters like x= that is a Keyword parameter.&lt;/P&gt;
&lt;P&gt;If you do not reference the parameter with the x= in the macro call then SAS treats that as a Positional Parameter(order of appearance assigns value to parameter. All positional parameters must be defined before keyword, if you mix them, so that SAS can tell which goes where. When you define the parameter as a Keyword parameter it is NOT a positional parameter and must be used.&lt;/P&gt;
&lt;P&gt;Simple fix: use the X= in the macro calls.&lt;/P&gt;
&lt;P&gt;Or if you only have one parameter don't use the keyword definition. Note that for positional parameters x= is still acceptable though arguments may exist about whether it is good style.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One of the reasons for this position first is that keyword parameters may be assigned a default value in the definition. A 'positional' parameter that is attempting to override the defined default doesn't have enough information as to which keyword it might be replacing (remember that some macros can have a LOT of parameters) and the code for the macro processor to "guess" as to the correct usage would be akin to mind reading.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 17:03:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-More-positional-parameters-found-than-defined/m-p/755988#M238613</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-07-22T17:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: More positional parameters found than defined.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ERROR-More-positional-parameters-found-than-defined/m-p/755990#M238614</link>
      <description>&lt;PRE&gt;%HR(&lt;STRONG&gt;&lt;FONT size="4" color="#FF0000"&gt;x=&lt;/FONT&gt;&lt;/STRONG&gt;Treatment_Year);
%HR(ace_arb);&lt;/PRE&gt;
&lt;P&gt;Looking at your code closely, you can see the macro calls that work are formatted differently from the macro calls that do not, specifically you're missing the X= portion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/140136"&gt;@Denali&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was trying to conduct Cox proportional hazard model using below macro. However, it stopped and gave me error messages "&amp;nbsp;ERROR: More positional parameters found than defined." for the last 6 variables.&lt;/P&gt;
&lt;P&gt;%HR(ace_arb);&lt;BR /&gt;%HR(ccb);&lt;BR /&gt;%HR(asa);&lt;BR /&gt;%HR(statin);&lt;BR /&gt;%HR(bb);&lt;BR /&gt;%HR(Stage);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is my SAS macro code:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;libname out xlsx "H:\Data\HR_Categorical_RS.xlsx";&lt;BR /&gt;%macro HR(x=);&lt;BR /&gt;%let outputName=_PE%substr(%cmpres(&amp;amp;x.),1,%sysfunc(min(%length(&amp;amp;x.),29)));&lt;BR /&gt;ods graphics off;&lt;BR /&gt;ods output ParameterEstimates=&amp;amp;outputName.;&lt;/P&gt;
&lt;P&gt;proc phreg data = RS1;&lt;BR /&gt;class &amp;amp;x;&lt;BR /&gt;model CTOX53cox_interval_1_6_21*CTOX53__within_1_year_of_trastuz(0) = &amp;amp;x /rl;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;ods output close;&lt;BR /&gt;ods graphics on;&lt;/P&gt;
&lt;P&gt;%mend HR;&lt;/P&gt;
&lt;P&gt;%HR(x=Age_C);&lt;BR /&gt;%HR(x=BMI_C );&lt;BR /&gt;%HR(x=Anthracycline__current_or_prior_);&lt;BR /&gt;%HR(x=XRT);&lt;BR /&gt;%HR(x=ER_cat);&lt;BR /&gt;%HR(x=htn);&lt;BR /&gt;%HR(x=dm);&lt;BR /&gt;%HR(x=hl);&lt;BR /&gt;%HR(x=cad);&lt;BR /&gt;%HR(x=arrhythmia__AY_adjudicated_1_202);&lt;BR /&gt;%HR(x=Smoking);&lt;BR /&gt;%HR(x=LVEF_C);&lt;BR /&gt;%HR(x=Race);&lt;BR /&gt;%HR(x=PR);&lt;BR /&gt;%HR(x=Treatment_Year);&lt;BR /&gt;%HR(ace_arb);&lt;BR /&gt;%HR(ccb);&lt;BR /&gt;%HR(asa);&lt;BR /&gt;%HR(statin);&lt;BR /&gt;%HR(bb);&lt;BR /&gt;%HR(Stage);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is the log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2705 %HR(x=Race);&lt;/P&gt;
&lt;P&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The data set WORK._PERACE has 2 observations and 11 variables.&lt;BR /&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.04 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;2706 %HR(x=PR);&lt;/P&gt;
&lt;P&gt;NOTE: 1 observations were deleted due either to missing or invalid values&lt;BR /&gt;for the time, censoring, frequency or explanatory variables or to&lt;BR /&gt;invalid operations in generating the values for some of the&lt;BR /&gt;explanatory variables.&lt;BR /&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The data set WORK._PEPR has 1 observations and 11 variables.&lt;BR /&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;2707 %HR(x=Treatment_Year);&lt;/P&gt;
&lt;P&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;NOTE: The data set WORK._PETREATMENT_YEAR has 4 observations and 11&lt;BR /&gt;variables.&lt;BR /&gt;NOTE: PROCEDURE PHREG used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2708 %HR(ace_arb);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2709 %HR(ccb);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2710 %HR(asa);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2711 %HR(statin);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2712 %HR(bb);&lt;BR /&gt;ERROR: More positional parameters found than defined.&lt;BR /&gt;2713 %HR(Stage);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please help me with trouble shooting my code? Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 17:13:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ERROR-More-positional-parameters-found-than-defined/m-p/755990#M238614</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-22T17:13:45Z</dc:date>
    </item>
  </channel>
</rss>

