BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Dennis_K
Obsidian | Level 7

Dear all, Suppose I've the following code.

PROC FORMAT;
   VALUE $RESP

     '1'="STRONGLY AGREE"

     '2'="AGREE"

     '3'="NEUTRAL"

     '4'="DISAGREE" 

     '5'="STRONGLY DISAGREE" ;

 RUN;

 

DATA SURVEY;

 INFILE DATALINES;

 INPUT ID $ (QUES1-QUES5)($1.);

 

 DATALINES;

 001 52344

 002 53241

 003 43255

 004 55412

 005 32514 ;

 RUN;

 

How do I use the FORMAT statement in the DATA STEP for Ques1 to Ques5?

Regards Dennis K

1 ACCEPTED SOLUTION

Accepted Solutions
Shmuel
Garnet | Level 18

just add a line to your code:

 

DATA SURVEY;

 INFILE DATALINES;

 INPUT ID $ (QUES1-QUES5)($1.);

FORMAT ques1-ques5 $resp.  ;  /* or $resp20. assuminc max description is 20 chars */

View solution in original post

2 REPLIES 2
Shmuel
Garnet | Level 18

just add a line to your code:

 

DATA SURVEY;

 INFILE DATALINES;

 INPUT ID $ (QUES1-QUES5)($1.);

FORMAT ques1-ques5 $resp.  ;  /* or $resp20. assuminc max description is 20 chars */

Dennis_K
Obsidian | Level 7
Dear Shmuel,
Thanks for the help. I'm keeping thinking that i should use the OF statement e.g (of Ques1-Ques5).

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 586 views
  • 0 likes
  • 2 in conversation