BookmarkSubscribeRSS Feed
Rohit12
Obsidian | Level 7

%let aa="bddabc@new.dk"  "bddabc@new.dk";

%put &aa;

 

data new;

zz=translate("&aa","@","$");

run;

 

NOTE: Line generated by the macro variable "AA".

1    ""bddabc@new.dk"  "bddabc@new.dk"

     ---

     216

        -----

        388

        76

ERROR 216-185: The use of a BIT string constant is not allowed in this context.

 

ERROR 388-185: Expecting an arithmetic operator.

 

ERROR 76-322: Syntax error, statement will be ignored.

 

72   run;

 

Question : what does this error mean " The use of a BIT string constant is not allowed in this context."

 

5 REPLIES 5
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Your error comes from having quotes in your macro variable:

%let aa="bddabc@new.dk"  "bddabc@new.dk";

 

Look at what is generated:

data new;

zz=translate(""bddabc@new.dk"  "bddabc@new.dk"","@","$");

run;

See the double quotes?

 

As always, I advise against putting lists of values in macro variables, data should go in datasets - clue is in the name.  And really don't put commas or quotes and things in macro variables at any time.

Rohit12
Obsidian | Level 7

Hello 

 

Actually values in macro variable  always will be in double quotes . I am working on some code which is working from long time and I cannot chnage that 

 

Should we have other solution rather than removing double quotes 

 

Thanks!!

Shmuel
Garnet | Level 18

You can overcome the quotes problem by using sysmget function:

 

%let aa="bddabc@new.dk"  "bddabc@new.dk";

data _null_;
    aa = symget('aa');
    aa = translate(aa,'$','@');
    put aa=;
run;
Rohit12
Obsidian | Level 7
actually I am passing this value bddabc@new.dk" "bddabc@new.dk" as a postional parameter in the macro so I think I cannot use symget

Anyother way of passing this value
Shmuel
Garnet | Level 18

You posted next code:

 

data new;

zz=translate("&aa","@","$");

run;

 

you need change one line:

 

data new;

zz=translate(symget("&aa"),"@","$");

run;

 

By the way, your macro variable &aa contains already @

if you want to translate it into $ you should write:

zz=translate(symget("&aa"),"$","@");

 

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 5 replies
  • 2313 views
  • 5 likes
  • 3 in conversation