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

 Hi all ,

i am using a macro function and i used proc sql; creat table.....; proc print;run; .but it does not print the table ,no error ,i just can find the table in Explorer.why it does not print ?and the name of one of the  columns is  "NAME OF FORMER VARIABLE" .how can i chage it to one word name? i tried rename ,but because it is not single name ,it gives me error.if anyone knows the answer appreciate to share it with me.

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

You're seeing the label not variable name most likely. 

 

Given what you've posted though we can't help. Obviously there's a mistake but without more details we can't tell you why.

 

When you're writing a macro you should start with working code. So if you haven't done that yet, I would suggest doing that first and then maybe comparing that to your macro to see where the differences are, and likely causing the issues. 

 

Use the debugging options to see the full code and it can help you see where/why the data set is not being created.

options notes symbolgen mprint;

View solution in original post

2 REPLIES 2
Shmuel
Garnet | Level 18

A variable cannot include spaces. If it includes you have to use it as 'var with space'n.

 

You may try do: (renmae = ("NAME OF FORMER VARIABLE"n = any_valid_name));

Reeza
Super User

You're seeing the label not variable name most likely. 

 

Given what you've posted though we can't help. Obviously there's a mistake but without more details we can't tell you why.

 

When you're writing a macro you should start with working code. So if you haven't done that yet, I would suggest doing that first and then maybe comparing that to your macro to see where the differences are, and likely causing the issues. 

 

Use the debugging options to see the full code and it can help you see where/why the data set is not being created.

options notes symbolgen mprint;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1251 views
  • 2 likes
  • 3 in conversation