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!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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