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-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

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
  • 983 views
  • 1 like
  • 3 in conversation