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!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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