BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
kimdukes77
Obsidian | Level 7

I am attempting to resolve a formatted macro variable inside ODS PDF text but am getting the error message below:-

 

  ERROR: More positional parameters found than defined.

 

If I remove the formatting from the 'total' it prints as expected, but it has to be comma formatted.

 

Code is below.  Can anyone help?

 

proc sql noprint;
select count(zip) format=comma10. into :total

from sashelp.zipcode;
quit; %put &total;

 

ods pdf file = 'c:\test.pdf';

ods pdf text = "This is the total: %left(&total)";

ods pdf close;

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

You're getting that error because the %LEFT function sees something like this:

 

%left(   123,456)

 

The comma appears to %LEFT as marking the end of the first parameter and the start of the second parameter.

 

The simplest solution would be to get rid of %LEFT.  First, remove leading blanks from &TOTAL using:

 

%let total = &total;

 

Then you can simplify the later statement:

 

ods pdf text = "This is the total: &total";

 

Good luck.

View solution in original post

2 REPLIES 2
Astounding
PROC Star

You're getting that error because the %LEFT function sees something like this:

 

%left(   123,456)

 

The comma appears to %LEFT as marking the end of the first parameter and the start of the second parameter.

 

The simplest solution would be to get rid of %LEFT.  First, remove leading blanks from &TOTAL using:

 

%let total = &total;

 

Then you can simplify the later statement:

 

ods pdf text = "This is the total: &total";

 

Good luck.

kimdukes77
Obsidian | Level 7

Worked brilliantly, thanks for your help!

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