BookmarkSubscribeRSS Feed
Ansileran
Calcite | Level 5
Hi !

I'm trying to use a macro variable as part of a column name. The main problem is that the query builder encloses the column name in simple quotes, and therefore doesn't recognise the macro variable as such.

Here is what I have :

a macro variable defined by a user prompt (which can be used, I checked) : YEAR
and a column name which should be : "AGE_&YEAR" => AGE_2010, AGE_2011...

If I try this, SAS writes the following code : AS '"AGE_&YEAR"'... Is there a way to remove those simple quotes ? Other than writing a program, I mean...

Thanks !
1 REPLY 1
Patrick
Opal | Level 21
Hi

Tried out what you've described. The code generated looks actually like:
'"AGE_&YEAR"'n

This 'n' means that the string is interpreted as literal. Seems that SAS R&D was quite thoughtful in allowing us to define all kind of variable names but didn't anticipate your use case.
Haven't found any option like "treat variable names as literals" which could be unchecked so I believe the current version of EG's query builder doesn't allow you what you try to do.

You could define the variable label this way though by passing the macro var without quotes: AGE_&YEAR

HTH
Patrick

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1 reply
  • 1426 views
  • 0 likes
  • 2 in conversation