BookmarkSubscribeRSS Feed
ssbeta
Calcite | Level 5

I am trying to create a format for a variable cl with particular values but SAS gives me the following error:

Expecting a ' , '

 

Here is my code:

 

proc format;

value cl 1-2 = 'high'

             3-4-5 = 'medium'

             6-7 = 'low'

;

run;

 

3 REPLIES 3
SASKiwi
PROC Star
proc format;
value cl 1-2 = 'high'
             3-5 = 'medium'
             6-7 = 'low'
;
run;
Tom
Super User Tom
Super User

Either list the individual values separated by commas.

value cl 1,2 = 'high'  3,4,5 = 'medium' 6,7 = 'low' ;

Or use hyphens to specify ranges

value cl 1-2 = 'high'  3-5 = 'medium' 6-7 = 'low' ;
srinath3111
Quartz | Level 8

Hi,

 

you can try 

 

 

proc format;

picture 1-2 = 'High'

          3-5='Medium'

          6-7='Low';

run;

 

 

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
  • 1164 views
  • 0 likes
  • 4 in conversation