BookmarkSubscribeRSS Feed
munitech4u
Quartz | Level 8

How to solve this problem:

 

%let bin371=MARINA, RV PARK, CAMPGROUND;
%put %qleft(&bin371);

 

It is throwing me error "Positional parameters error" .I need to use qleft to remove trailing blanks. How can i Keep this value, and same time remove the trailing blanks.?

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

The auto macro %qleft only accepts up to two parameters.  Look at what code your macro is creating:

%put %qleft(MARINA, RV PARK, CAMPGROUND);

You will see in the above there are three parameters as you have used commas in the string.

You could try:

%let bin371=MARINA, RV PARK, CAMPGROUND;
%put %qleft(%quote(&bin371));

However, why bother with the above at all.  Base SAS is designed to process and manipulate data.  Macro SAS is designed to generate code.  The two are for different purposes and trying to shoe horn data processing into macro language is not a good idea.  Put your list in a dataset:

PARAM

MARINA

RV PARK

...

 

And then use that dataset, far easier to code and maintain.

rogerjdeangelis
Barite | Level 11

Hi Team

 

%let bin371='MARINA, RV PARK, CAMPGROUND';
%let res= %qsysfunc(dequote(%left(&bin371)));

%put **&res.**;

**MARINA, RV PARK, CAMPGROUND** 

 

I find this useful,  especially when you have '%', ';' , ','  and  '&' in the text.

 

SAS often does automatic unquoting when you least expect it, so the single quotes let you decide when you want to unquote.

munitech4u
Quartz | Level 8
well, it is a smaller step in one of the loops, that I was using. But this worked fine for me: %sysfunc(strip(&bin371));

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 3 replies
  • 773 views
  • 0 likes
  • 3 in conversation