BookmarkSubscribeRSS Feed
attjooo
Calcite | Level 5

My data set have variables VAR1, VAR2, and VAR3.

The variables are displayed in order VAR1, VAR3 and VAR2. I want them in order VAR1, VAR2 and VAR3.

How do I change the order in a DATA STEP?

3 REPLIES 3
Patrick
Opal | Level 21

Have a look into this very recent discussion

It's sometimes worth to first search the communities as a lot of questions have already been answered.

stat_sas
Ammonite | Level 13

data want;

retain var1 var2 var3;

set have;

run;

Rick_SAS
SAS Super FREQ

Often the order of variables does not matter, but I recently wrote an article about reordering variables according to a value of a statistic (mean, median, variance,...). Yes, I used the RETAIN statement. For details, see

Order variables by values of a statistic - The DO Loop

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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