BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DmytroYermak
Lapis Lazuli | Level 10

Hi all,

 

Could you please help with the Note that disable work of a macros. It is the first note inside the log:

 

%macro test;
... 304 footnote1 %str(N = number of subjects in the safety analysis set.); 305 footnote2 %bquote(n' represents the number of subjects with a result at the visit for the particular parameter.); ---------------------------------------------------------------------------------------------- 49 NOTE 49-169: The meaning of an identifier after a quoted string might change in a future SAS release. Inserting white space between a quoted string and the succeeding identifier is recommended. 306 footnote3 %str(Percentages are based on the number of subjects with non-missing data at the time point.); ...
%mend;

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
Oligolas
Barite | Level 11

Hi,

you need to put your text into quotes

%macro test;
footnote1 %nrstr('N = number of subjects in the safety analysis set');
footnote2 %nrstr('n'' represents the number of subjects with a result at the visit for the particular parameter');
footnote3 %nrstr('Percentages are based on the number of subjects with non-missing data at the time point');
%mend;
%test;

Please note that you currently do not need any macro quoting function for displaying the text in the example

 

________________________

- Cheers -

View solution in original post

2 REPLIES 2
Oligolas
Barite | Level 11

Hi,

you need to put your text into quotes

%macro test;
footnote1 %nrstr('N = number of subjects in the safety analysis set');
footnote2 %nrstr('n'' represents the number of subjects with a result at the visit for the particular parameter');
footnote3 %nrstr('Percentages are based on the number of subjects with non-missing data at the time point');
%mend;
%test;

Please note that you currently do not need any macro quoting function for displaying the text in the example

 

________________________

- Cheers -

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1375 views
  • 0 likes
  • 2 in conversation