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;
proc format;
value cl 1-2 = 'high'
3-5 = 'medium'
6-7 = 'low'
;
run;
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' ;
Hi,
you can try
proc format;
picture 1-2 = 'High'
3-5='Medium'
6-7='Low';
run;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.
Ready to level-up your skills? Choose your own adventure.