SAS Enterprise Guide

Desktop productivity for business analysts and programmers
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
runningjay
Fluorite | Level 6

I'm using SAS EG Version 7.13. I have a field that contains nine values. When creating a summary table and using either the Summary Tables wizard or the Summary Tables function the order the values appear in rows or columns is always alphabetical. How can I select the order the values appear as either rows or columns instead of the alphabetical selection or the value with the largest value?

 

For example if my field is FOOD and my values are Apple, Banana, Carrot, Eggplant and Mushroom I want the row order (or column order) to appear as the following:

 

Mushroom

Carrot

Banana

Apple

Eggplant

 

Thanks for any guidance on how to do this in SAS EG Summary Tables wizard or Summary Tables function.

1 ACCEPTED SOLUTION

Accepted Solutions
snoopy369
Barite | Level 11

If your dataset is already sorted in the order you want (Mushroom, Carrot, etc.), then:

 

1.  Run Summary Tables (not wizard)

2.  Add your classification variable

3.  Under the options for that classification variable once added is "Sort by"; you can choose "Data Set Order"

 

Then it will come out in the order that the classification variable is encountered in the dataset.

 

If that is not possible (if you don't have it sorted that way), you can do it with a custom format, but it's not doable directly in the task.

 

For reference, you have four options: Formatted, Unformatted, Dataset Order, or Descending, in that particular task. 

View solution in original post

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Use formats.  So set a format to something like:

 

proc format;
  value fruit
    1="Mushroom" 
    2="Carrot"
...; run;

Then convert your data to be 1 2 3 etc. and apply the format to it:

 

 

data want;
  set have;
  select(fruit);
    when ("Mushroom") fruit_code=1;
    when ("Carrot") fruit_code=2;
    ...;
  end;
  format fruit_code fruit.;
run;

This way the text will be displayed, but the underlying sort would use the unformatted number.  As for "SAS EG Summary Tables wizard or Summary Tables function" - no idea, I only work in code as its most flexible.

 

runningjay
Fluorite | Level 6

Thanks for the info. I was looking for a way to do this within SAS EG's wizards, but this is helpful.

snoopy369
Barite | Level 11

If your dataset is already sorted in the order you want (Mushroom, Carrot, etc.), then:

 

1.  Run Summary Tables (not wizard)

2.  Add your classification variable

3.  Under the options for that classification variable once added is "Sort by"; you can choose "Data Set Order"

 

Then it will come out in the order that the classification variable is encountered in the dataset.

 

If that is not possible (if you don't have it sorted that way), you can do it with a custom format, but it's not doable directly in the task.

 

For reference, you have four options: Formatted, Unformatted, Dataset Order, or Descending, in that particular task. 

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 3 replies
  • 2825 views
  • 1 like
  • 3 in conversation