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

Hello

Let's say that I have a  data set (summary report) and I want to re-order the rows.

The issue is that I don't want to order it by descending criteria and not by ascending criteria.

I want to to order it by order that I want to define in advance.

I want that order of rows will be by "team" :bcbfb, jdjfj,asddd

and within each team by Profit(from high value to low value).

Data Report;
input team $ sub_team $ Profit;
cards;
asddd a 10 
asddd b 30
asddd c 20 jdjfj a 40
jdjfj b 50
jdjfj c 15 bcbfb a 35
bcbfb b 46
bcbfb c 90
;
run;
/*The required order of rows is bcbfb jdjfj asddd */

 

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

Create a team order variable and sort by that. Use PROC FORMAT to assign the order:

proc format;
  value $team_order
  bcbfb = '1'
  jdjfj    = '2'
  asddd = '3'
  ;
run;

data want;
  set have;
  team_order = put(team, $team_order.);
run;

proc sort data = want;
  by team_order;
run;

View solution in original post

1 REPLY 1
SASKiwi
PROC Star

Create a team order variable and sort by that. Use PROC FORMAT to assign the order:

proc format;
  value $team_order
  bcbfb = '1'
  jdjfj    = '2'
  asddd = '3'
  ;
run;

data want;
  set have;
  team_order = put(team, $team_order.);
run;

proc sort data = want;
  by team_order;
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 1 reply
  • 299 views
  • 0 likes
  • 2 in conversation