BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Batman
Quartz | Level 8

I'm trying to store a format name in a macro variable.   How do I invoke a macro value with a "$"?  

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

The macro language doesn't care about the $ character.

So anything like

%let fmtname = $abc. ;

 

and use in a format statement like

 

format somevariable &fmtname.;

 should work.

 

If you are looking at something more complicated then provide details.

View solution in original post

2 REPLIES 2
ballardw
Super User

The macro language doesn't care about the $ character.

So anything like

%let fmtname = $abc. ;

 

and use in a format statement like

 

format somevariable &fmtname.;

 should work.

 

If you are looking at something more complicated then provide details.

PaigeMiller
Diamond | Level 26

How do I invoke a macro value with a "$"?  

 

You use a macro variable by starting with &

 

such as &variablename

 

but really, the explanation you gave is MUCH MUCH MUCH too brief for us to help in any meaningful way. Spend some time and describe the problem in detail.

--
Paige Miller

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 2 replies
  • 488 views
  • 1 like
  • 3 in conversation