BookmarkSubscribeRSS Feed
Ronein
Onyx | Level 15

Hello

What is the purpose of writing "default=20" in this example of multilabel format?

 

What is the purpose of writing "notsorted"?

 

If I want that order of rows in summary report will be in same order as left side of proc format

('Strong approval','Weak Approval','Approval','Weak Decline','Strong Decline','Decline') then should I add the option "notsorted"?

 

proc format library=work;
value appr (default=20 multilabel notsorted)
1-2  = 'Strong approval'
3-6  = 'Weak Approval'
1-6  = 'Approval'
7-8  = 'Weak Decline'
9-10 = 'Strong Decline'
7-10 = 'Decline'
;
run;
3 REPLIES 3
PaigeMiller
Diamond | Level 26

This is the exact situation, when you want to know what a certain option does, where you should consult the documentation. SAS has done a great job of explaining every command and every option. Here is the PROC FORMAT documentation: https://documentation.sas.com/?docsetId=proc&docsetVersion=9.4&docsetTarget=p1upn25lbfo6mkn1wncu4dyh...

--
Paige Miller
Ronein
Onyx | Level 15
Thank you.
What is the logic that in this example they
Choose default=20 and not default =30?
PaigeMiller
Diamond | Level 26

Because 20 is sufficient in this example

 

 
--
Paige Miller

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

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 830 views
  • 0 likes
  • 2 in conversation