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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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