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

Hello,

I am looking for a very easy way to custom order variables within a data set.  For example, I have a dataset with variables currently in order x a b y z c

And I would like to reorder them a b c x y z.

I have looked at a few methods (e.g., order=) but they all seem like circuitous methods. What is the easiest way?

Thank you in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
stat_sas
Ammonite | Level 13

data want;

   retain  a b c x y z;

  set have;

run;

View solution in original post

7 REPLIES 7
stat_sas
Ammonite | Level 13

data want;

   retain  a b c x y z;

  set have;

run;

ct_surg
Calcite | Level 5

Perfect, thank you.

Ksharp
Super User

proc sql;

create table want as

  select a,b,c,x,y,z  from have;

quit;

Xia Keshan

ct_surg
Calcite | Level 5

Within a single variable, is there a way to custom order the outputs in proc freq?

For example;

var1 = c a b

var2 = 1 2 3

proc freq data;

     tables var1*var2;

run;

display such that table outputs as

   1 2 3

a

b

c

stat_sas
Ammonite | Level 13

If I understand it correctly you are looking for a cross tab like this

data have;
input var1 $ var2;
datalines;
a 1
b 2
c 3
;

proc freq data=have;
table var1*var2/nocol norow nopercent ;
run;

ct_surg
Calcite | Level 5

I would like to reorder variables within var1.  For example, var1 currently displays as

a  c   b   d

I would like it to display as

a   b   c   d

ct_surg
Calcite | Level 5

More precisely, and just focusing on var 1

proc freq data=;

     tables var1;

run;

currently:

a           c              b               d

1           4              5               7

desired:

a           b              c               d

1           5              4               7

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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