BookmarkSubscribeRSS Feed
AG_Stats
Quartz | Level 8

Hi,

 

Below is a short program having some one-to-one and many-to-one formats.  I want a dataset for the same and want to use that dataset as formats.  Also I have attached a txt file containing all values and required labels (in which you can change, if required "low" to 0 and "high" to 100 for age formats):

proc format library=myfmts;
	value $gender 'M'='Male' 'F'='Female' ' '='Not entered' other='Miscoded';
	value age low-29='Less than 30' 30-50='30 to 50' 51-high='51+';
	value $likert '1'='Strongly disagree' '2'='Disagree' '3'='No opinion' 
		'4'='Agree' '5'='Strongly agree';
        value $likert_new '1'-'3' = 'Agree' '4','5' = 'Disagree';
run;

Please give me required sas codes.

Regards,
AG_Stats
1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Option is cntlout=, e.g.:

proc format cntlout=work.formats_dataset...

 

SAS Manual:

http://support.sas.com/kb/22/194.html

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
  • 1 reply
  • 1365 views
  • 4 likes
  • 2 in conversation