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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

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
  • 675 views
  • 0 likes
  • 2 in conversation