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

Hello everyone,

 

I have a file and its first variable is an ID variable that is numeric, when it should be character. If I convert it and rename it, the new variable is placed at the end of the file, which is cumbersome. I tried using "retain" to reorder the file, but somehow the ID variable remains at the end (not sure what I do wrong). Is there an easier way of doing this?

 

Thanks:)

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

To reorder the variables the retain statement has to come BEFORE the set statement.

 

HTH,

Art, CEO, AnalystFinder.com

View solution in original post

4 REPLIES 4
art297
Opal | Level 21

To reorder the variables the retain statement has to come BEFORE the set statement.

 

HTH,

Art, CEO, AnalystFinder.com

mikiduta
Fluorite | Level 6

Hi, thank you so much for your answer! Best regards

Shmuel
Garnet | Level 18

Use next skiltom code:

 

data want;

         format id;   /* force ID to be 1st , you can add other variables in desired order*/

  set have(rename=(id=_id));

        ID = input(_id, best8.);    /* adapt to length of ID */

run;

mikiduta
Fluorite | Level 6

Thank you so much! Best regards!

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

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
  • 4 replies
  • 2369 views
  • 2 likes
  • 3 in conversation