BookmarkSubscribeRSS Feed
rakshit_shah
Calcite | Level 5


Hello all,

     I have made one link format and applied it to one variable. Now i want to pass this variable in macro.

The value of variable is as follows:

 

The value of Path_name is :

<a href='javascript:goToObject("Director?_directive=GRC_FinancialImpact&handle=10314|")'> 10314</a>

I want to pass it in macro variable. I tried %str and %nrstr but still it is giving error. Any solution??

Regards,

Rakshit

2 REPLIES 2
DanRalyea
Calcite | Level 5

I believe %SUPERQ will mask the & and " allowing you to pass the string through without attempting to resolve the & reference. To use %Superquote the path will be stored in a macro variable then referenced.

data _null_;

call symput('mv1','Smith&Jones');

call symput('mv2','%macro abc;');

run; %let testmv1=%superq(mv1);

%let testmv2=%superq(mv2);

%put Macro variable TESTMV1 is &testmv1;

%put Macro variable TESTMV2 is &testmv2;

When this program executes, these lines are written to the SAS log:

Macro variable TESTMV1 is Smith&Jones

Macro variable TESTMV2 is %macro abc;

Ksharp
Super User

In your path_name, there are several unmatched single or double quote , you should put % before it to avoid error message.

%let path=%nrstr(<a href=%'javascript:goToObject(%"Director?_directive=GRC_FinancialImpact&handle=10314|%")%'> 10314</a>) ;

%put &path;

Ksharp

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