Hi Forum,
Could you please help me to figure out what is the wrong with my macro code below?
%macro one (product);
proc sort data= a.unified_dataset_&product out= A_&product_sorted;
by bank_number account_number current_date;
run;
%mend one;
%one (product=PL);
%one (product=OD);
%one (product=MTG);
When I ran the above, following error message comes.
SYMBOLGEN: Macro variable PRODUCT resolves to PL
WARNING: Apparent symbolic reference PRODUCT_SORTED not resolved.
NOTE 137-205: Line generated by the invoked macro "ONE".
21 proc sort data= a.unified_dataset_&product out= A_&product_sorted; by bank_number account_number current_date; run;
_
22
ERROR 22-322: Syntax error, expecting one of the following: ;, (, ASCII, BUFFNO, DANISH, DATA, DATECOPY, DETAILS, DIAG, DUPOUT,
EBCDIC, EQUALS, FINNISH, FORCE, IN, ISA, L, LEAVE, LIST, MESSAGE, MSG, NATIONAL, NODUP, NODUPKEY, NODUPKEYS,
NODUPLICATE, NODUPLICATES, NODUPREC, NODUPRECS, NODUPS, NOEQUALS, NORWEGIAN, NOTHREADS, OSA, OUT, OVERWRITE,
PAGESIZE, PRESORTED, PSIZE, REVERSE, SIZE, SORTSEQ, SORTSIZE, SORTWKNO, SWEDISH, T, TAGSORT, TECH, TECHNIQUE,
TESTHSI, THREADS, WKNO, WORKNO.
thanks
Mirisage
out= A_&product_sorted;
SYMBOLGEN: Macro variable PRODUCT resolves to PL
WARNING: Apparent symbolic reference PRODUCT_SORTED not resolved.
You've embedded the macro variable in the middle of text, so SAS doesn't know where the macro variable ends. It thinks that the macro variable is &product_sorted.
You can specify the end of a macro variable with a period.
out= A_&product._sorted;
out= A_&product_sorted;
SYMBOLGEN: Macro variable PRODUCT resolves to PL
WARNING: Apparent symbolic reference PRODUCT_SORTED not resolved.
You've embedded the macro variable in the middle of text, so SAS doesn't know where the macro variable ends. It thinks that the macro variable is &product_sorted.
You can specify the end of a macro variable with a period.
out= A_&product._sorted;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.