%macro Generate_transformed_Scored
(variable=,
Has_Left=0,
Has_Right=0,
Left_value=0,
Right_Value=0,
Meaningful_Null=1,
condition1=LE-100000000,
condition2=LE-100000000,
condition3=LE-100000000,
condition4=LE-100000000,
condition5=LE-100000000,
condition6=LE-100000000,
condition7=LE-100000000,
condition8=LE-100000000,
condition9=LE-100000000);
then later I have the following:
%Generate_transformed_Scores (variables=LongestOverdueMonth,Has_Left=0,Has_Right=0,
condition1=>=3,
condition1=>=2,
condition1=>=1,
condition1=<1,
Meaningful_Null=0);
are the cobdition actually boolean? what does =>= means?
what is the macro trying to achieve?
... View more