Hi,
I have a macrovariable:
%LET A = 01,02,03;
I have a macro:
%macro B(A);
I want to call my macro
%B(&A.)
I undestood that because of the commas, I should write
%B(%superq(&A.))
It is working when I call the macro. But when the macro begins to be written I got this error:
ERROR: Invalid symbolic variable name 01,02,03.
Can you tell me what I should do here?
Thanks.
The %superq function does not expect the contents, but the name of a macro variable as argument:
%B(%superq(A))
PS Maxim 1: Read the documentation:
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.