<?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: Greedy Macro error in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628332#M20657</link>
    <description>&lt;P&gt;I suggest you turn on options MPRINT, call the macro, and post the full log.&amp;nbsp; It should show (or at least give good clues) as to what is happening.&amp;nbsp; Assuming there are no errors or warnings before that point in the log, I would look for notes about datasets with 0 observations.&lt;/P&gt;</description>
    <pubDate>Fri, 28 Feb 2020 20:42:08 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2020-02-28T20:42:08Z</dc:date>
    <item>
      <title>Greedy Macro error</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628283#M20651</link>
      <description>&lt;P&gt;Using SAS 9.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running the greedy macro from the Mayo clinic college of medicine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%INCLUDE 'my location';&lt;BR /&gt;%gmatch(data=stacked,group= ca_co,id= obs4,&lt;BR /&gt;mvars= sex age_scope,wts=1 1,dmaxk=0 1,&lt;BR /&gt;ncontls= 1,seedca= 69,seedco= 14012,&lt;BR /&gt;out= stacked_greedy, outnmca= unmatch_casesa, outnmco= unmatch_controlsa );&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I run the above code it produces the following error&lt;/P&gt;&lt;P&gt;WARNING: Apparent symbolic reference NCO not resolved.&lt;BR /&gt;WARNING: Apparent symbolic reference NCA not resolved.&lt;BR /&gt;WARNING: Apparent symbolic reference NCA not resolved.&lt;BR /&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric&lt;BR /&gt;operand is required. The condition was: &amp;amp;NCA*1&lt;BR /&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric&lt;BR /&gt;operand is required. The condition was: &amp;amp;NCO &amp;lt; %EVAL(&amp;amp;NCA*&amp;amp;NCONTLS)&lt;BR /&gt;ERROR: The macro GREEDY will stop executing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone encountered this error or does anyone know what this error is referring to? Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 17:49:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628283#M20651</guid>
      <dc:creator>GS2</dc:creator>
      <dc:date>2020-02-28T17:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Greedy Macro error</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628286#M20652</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/194348"&gt;@GS2&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Using SAS 9.4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am running the greedy macro from the Mayo clinic college of medicine.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%INCLUDE 'my location';&lt;BR /&gt;%gmatch(data=stacked,group= ca_co,id= obs4,&lt;BR /&gt;mvars= sex age_scope,wts=1 1,dmaxk=0 1,&lt;BR /&gt;ncontls= 1,seedca= 69,seedco= 14012,&lt;BR /&gt;out= stacked_greedy, outnmca= unmatch_casesa, outnmco= unmatch_controlsa );&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;when I run the above code it produces the following error&lt;/P&gt;
&lt;P&gt;WARNING: Apparent symbolic reference NCO not resolved.&lt;BR /&gt;WARNING: Apparent symbolic reference NCA not resolved.&lt;BR /&gt;WARNING: Apparent symbolic reference NCA not resolved.&lt;BR /&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric&lt;BR /&gt;operand is required. The condition was: &amp;amp;NCA*1&lt;BR /&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric&lt;BR /&gt;operand is required. The condition was: &amp;amp;NCO &amp;lt; %EVAL(&amp;amp;NCA*&amp;amp;NCONTLS)&lt;BR /&gt;ERROR: The macro GREEDY will stop executing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has anyone encountered this error or does anyone know what this error is referring to? Thank you&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The "WARNING: Apparent symbolic reference NCO not resolved." type warnings typically mean that no value was supplied for a macro variable. That means there is no actual text to result for the %eval&amp;nbsp; which would be the result of attempting to compute something like a comparison.&lt;/P&gt;
&lt;P&gt;In effect you have&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;blank text&amp;gt; &amp;lt; (&amp;lt;blank value&amp;gt; * 1)&lt;/P&gt;
&lt;P&gt;the evaluation doesn't have an actual value so fails because %eval does not know how to multiple a blank value times 1 and throws the error. The missing result on both sides of the comparison &amp;lt; won't help either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When working with macros you often need to set&lt;/P&gt;
&lt;P&gt;Options MPRINT;&lt;/P&gt;
&lt;P&gt;to get more debug information. You may also need the SYMBOLGEN and MLOGIC options set. The log will show much more detail about the code generated by the macro and the errors will appear in relation to the generated code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actual cause could vary from expected macro variable not provided as parameters or the values passed to not generate valid values for the not resolved variables. Check to make sure you provided all the parameters the macro call expects. You may have to actually read the code for the macro to get that information.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 18:05:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628286#M20652</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-02-28T18:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Greedy Macro error</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628316#M20655</link>
      <description>&lt;P&gt;I would suggest you turn on MPRINT, and review the log.&amp;nbsp; In addition, review the macro code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From a quick look at the macro code, it looks like it expects the variable you pass in the GROUP parameter to be coded 1/0 for case/control.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You pass group=ca_co.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your variable ca_co is not coded 0/1, the macro will not generate the macro variables NCA and NCO.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In this part of the macro code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;      DATA __CASE; SET _caco;
           if &amp;amp;group=1;
      DATA __CASE; SET __CASE END=EOF;
       KEEP __IDCA __CA1-__CA&amp;amp;NVAR __R &amp;amp;mvars
         %if &amp;amp;time^= %then %do;
             __catime
         %end;
          ;
         __IDCA=&amp;amp;ID;
         %if &amp;amp;time^= %then %do;
            __catime=&amp;amp;time;
         %end;
         %DO I=1 %TO &amp;amp;NVAR;
            __CA&amp;amp;I=&amp;amp;&amp;amp;V&amp;amp;I;
         %END;
         %if &amp;amp;seedca^= %then %do;
         SEED=&amp;amp;SEEDCA;
         __R=RANUNI( SEED  );
         %end;
         %else %do;
         __R=1;
         %end;
 
         IF EOF THEN CALL SYMPUT('NCA',_N_);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The data set __CASE will end up with 0 variables, so the CALL SYMPUT that creates the macro variable NCA will never execute.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 19:53:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628316#M20655</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2020-02-28T19:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Greedy Macro error</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628330#M20656</link>
      <description>&lt;P&gt;The variable ca_co is coded as a binary 1/0 in my data set.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 20:32:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628330#M20656</guid>
      <dc:creator>GS2</dc:creator>
      <dc:date>2020-02-28T20:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Greedy Macro error</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628332#M20657</link>
      <description>&lt;P&gt;I suggest you turn on options MPRINT, call the macro, and post the full log.&amp;nbsp; It should show (or at least give good clues) as to what is happening.&amp;nbsp; Assuming there are no errors or warnings before that point in the log, I would look for notes about datasets with 0 observations.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 20:42:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628332#M20657</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2020-02-28T20:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Greedy Macro error</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628765#M20676</link>
      <description>&lt;P&gt;Below is the log as suggested after I turned on&amp;nbsp; mprints. Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;126 options mprint;&lt;BR /&gt;127 %INCLUDE 'G:\Outcomes Research\SAS Code\Completed Macros\GreedyMacro.sas';&lt;BR /&gt;780 %gmatch(data=stacked,group= ca_co, id= obs4,&lt;BR /&gt;781 mvars= sex_greedy age_scope,wts=1 1,dmaxk=0 1,&lt;BR /&gt;782 ncontls= 1,seedca= 69,seedco= 14012,&lt;BR /&gt;783 out= stacked_greedy, outnmca= unmatch_casesa, outnmco= unmatch_controlsa print=&lt;BR /&gt;783 ! y);&lt;BR /&gt;MPRINT(GMATCH): DATA _NULL_;&lt;BR /&gt;MPRINT(GMATCH): IF 1&amp;lt;0 THEN DO;&lt;BR /&gt;MPRINT(GMATCH): PUT 'ERROR: WEIGHTS MUST BE NON-NEGATIVE';&lt;BR /&gt;MPRINT(GMATCH): CALL SYMPUT('BAD','1');&lt;BR /&gt;MPRINT(GMATCH): END;&lt;BR /&gt;MPRINT(GMATCH): IF 1&amp;lt;0 THEN DO;&lt;BR /&gt;MPRINT(GMATCH): PUT 'ERROR: WEIGHTS MUST BE NON-NEGATIVE';&lt;BR /&gt;MPRINT(GMATCH): CALL SYMPUT('BAD','1');&lt;BR /&gt;MPRINT(GMATCH): END;&lt;BR /&gt;MPRINT(GMATCH): RUN;&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MPRINT(GMATCH): DATA _NULL_;&lt;BR /&gt;MPRINT(GMATCH): IF 0&amp;lt;0 THEN DO;&lt;BR /&gt;MPRINT(GMATCH): PUT 'ERROR: DMAXK VALUES MUST BE NON-NEGATIVE';&lt;BR /&gt;MPRINT(GMATCH): CALL SYMPUT('BAD','1');&lt;BR /&gt;MPRINT(GMATCH): END;&lt;BR /&gt;MPRINT(GMATCH): IF 1&amp;lt;0 THEN DO;&lt;BR /&gt;MPRINT(GMATCH): PUT 'ERROR: DMAXK VALUES MUST BE NON-NEGATIVE';&lt;BR /&gt;MPRINT(GMATCH): CALL SYMPUT('BAD','1');&lt;BR /&gt;MPRINT(GMATCH): END;&lt;BR /&gt;MPRINT(GMATCH): RUN;&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MPRINT(GREEDY): data __CHECK;&lt;BR /&gt;MPRINT(GREEDY): set stacked;&lt;BR /&gt;MPRINT(GREEDY): __id=obs4;&lt;BR /&gt;MPRINT(GREEDY): if __id="" then delete;&lt;BR /&gt;MPRINT(GREEDY): IF sex_greedy=. THEN DELETE;&lt;BR /&gt;MPRINT(GREEDY): IF age_scope=. THEN DELETE;&lt;BR /&gt;MPRINT(GREEDY): run;&lt;/P&gt;&lt;P&gt;NOTE: There were 14081 observations read from the data set WORK.STACKED.&lt;BR /&gt;NOTE: The data set WORK.__CHECK has 0 observations and 39 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MPRINT(GREEDY): *** transform data if requested/separate cases &amp;amp; controls;&lt;BR /&gt;MPRINT(GREEDY): data _caco;&lt;BR /&gt;MPRINT(GREEDY): set __check;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.__CHECK.&lt;BR /&gt;NOTE: The data set WORK._CACO has 0 observations and 39 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MPRINT(GREEDY): DATA __CASE;&lt;BR /&gt;MPRINT(GREEDY): SET _caco;&lt;BR /&gt;MPRINT(GREEDY): if ca_co=1;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK._CACO.&lt;BR /&gt;NOTE: The data set WORK.__CASE has 0 observations and 39 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MPRINT(GREEDY): DATA __CASE;&lt;BR /&gt;MPRINT(GREEDY): SET __CASE END=EOF;&lt;BR /&gt;MPRINT(GREEDY): KEEP __IDCA __CA1-__CA2 __R sex_greedy age_scope ;&lt;BR /&gt;MPRINT(GREEDY): __IDCA=obs4;&lt;BR /&gt;MPRINT(GREEDY): __CA1=sex_greedy;&lt;BR /&gt;MPRINT(GREEDY): __CA2=age_scope;&lt;BR /&gt;MPRINT(GREEDY): SEED=69;&lt;BR /&gt;MPRINT(GREEDY): __R=RANUNI( SEED );&lt;BR /&gt;MPRINT(GREEDY): IF EOF THEN CALL SYMPUT('NCA',_N_);&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by:&lt;BR /&gt;(Line):(Column).&lt;BR /&gt;22:43&lt;BR /&gt;NOTE: There were 0 observations read from the data set WORK.__CASE.&lt;BR /&gt;NOTE: The data set WORK.__CASE has 0 observations and 6 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MPRINT(GREEDY): PROC SORT;&lt;BR /&gt;MPRINT(GREEDY): BY __R __IDCA;&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;BR /&gt;NOTE: The data set WORK.__CASE has 0 observations and 6 variables.&lt;BR /&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MPRINT(GREEDY): DATA __CONT;&lt;BR /&gt;MPRINT(GREEDY): SET _caco;&lt;BR /&gt;MPRINT(GREEDY): if ca_co=0;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK._CACO.&lt;BR /&gt;NOTE: The data set WORK.__CONT has 0 observations and 39 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;MPRINT(GREEDY): DATA __CONT;&lt;BR /&gt;MPRINT(GREEDY): SET __CONT END=EOF;&lt;BR /&gt;MPRINT(GREEDY): KEEP __IDCO __CO1-__CO2 __R sex_greedy age_scope ;&lt;BR /&gt;MPRINT(GREEDY): __IDCO=obs4;&lt;BR /&gt;MPRINT(GREEDY): __CO1=sex_greedy;&lt;BR /&gt;MPRINT(GREEDY): __CO2=age_scope;&lt;BR /&gt;MPRINT(GREEDY): SEED=14012;&lt;BR /&gt;MPRINT(GREEDY): __R=RANUNI( SEED );&lt;BR /&gt;MPRINT(GREEDY): IF EOF THEN CALL SYMPUT('NCO',_N_);&lt;BR /&gt;MPRINT(GREEDY): RUN;&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by:&lt;BR /&gt;(Line):(Column).&lt;BR /&gt;33:43&lt;BR /&gt;NOTE: There were 0 observations read from the data set WORK.__CONT.&lt;BR /&gt;NOTE: The data set WORK.__CONT has 0 observations and 6 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.01 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;WARNING: Apparent symbolic reference NCO not resolved.&lt;BR /&gt;WARNING: Apparent symbolic reference NCA not resolved.&lt;BR /&gt;WARNING: Apparent symbolic reference NCA not resolved.&lt;BR /&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric&lt;BR /&gt;operand is required. The condition was: &amp;amp;NCA*1&lt;BR /&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric&lt;BR /&gt;operand is required. The condition was: &amp;amp;NCO &amp;lt; %EVAL(&amp;amp;NCA*&amp;amp;NCONTLS)&lt;BR /&gt;ERROR: The macro GREEDY will stop executing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 13:59:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628765#M20676</guid>
      <dc:creator>GS2</dc:creator>
      <dc:date>2020-03-02T13:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Greedy Macro error</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628773#M20677</link>
      <description>&lt;P&gt;Thanks, that helps.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at this part of the log:&lt;/P&gt;
&lt;PRE&gt;MPRINT(GREEDY): data __CHECK;
MPRINT(GREEDY): set stacked;
MPRINT(GREEDY): __id=obs4;
MPRINT(GREEDY): if __id="" then delete;
MPRINT(GREEDY): IF sex_greedy=. THEN DELETE;
MPRINT(GREEDY): IF age_scope=. THEN DELETE;
MPRINT(GREEDY): run;

NOTE: There were 14081 observations read from the data set WORK.STACKED.
NOTE: The data set WORK.__CHECK has 0 observations and 39 variables.
NOTE: DATA statement used (Total process time):
real time 0.01 seconds
cpu time 0.01 seconds&lt;/PRE&gt;
&lt;P&gt;It delete records with missing values for the following variables in your input dataset: OBS4 SEX_GREEDY AGE_SCOPE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And it is deleting every record, and outputting a 0 observation data set, as I had suspected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you look at your source data and run:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=stacked;
  tables obs4*sex_greedy*age_scope/missing list;
run; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I assume it shows that every record has at least one missing value value for one of those variables?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That would mean every record is being deleted, and there is no data to analyze.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 14:22:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Greedy-Macro-error/m-p/628773#M20677</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2020-03-02T14:22:12Z</dc:date>
    </item>
  </channel>
</rss>

