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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.