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

Does any one know how to add an "other" entry to an existing SAS proc format.  For example you've already built and stored a format called sex:

 

proc format;

value $sex

'1' = ‘Female’

'2' = ‘Male’

;

run;

 

Now instead of re-running the above to include an "other" value can I just insert a new "row" into this that says OTHER=Unknown?

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

I'm a little too rushed to spell it out in detail, but here's the idea.

 

Run PROC FORMAT, using the CNTLOUT= option.  That gives you a SAS data set holding all the information needed to generate the format in its current form.

 

Modify the SAS data set, adding an observation that changes two variables:

HLO='O'

Label = 'Other'

 

Use the modified data set as input to PROC FORMAT, using the CNTLIN= option.

View solution in original post

2 REPLIES 2
ballardw
Super User

@john_sanzone wrote:

Does any one know how to add an "other" entry to an existing SAS proc format.  For example you've already built and stored a format called sex:

 

proc format;

value $sex

'1' = ‘Female’

'2' = ‘Male’

;

run;

 

Now instead of re-running the above to include an "other" value can I just insert a new "row" into this that says OTHER=Unknown?


Not if you want the format do display "unknown" .

Run

proc format;
value $sex
'1' = ‘Female’
'2' = ‘Male’
other='Unknown'
;
run;

to modify the format.

 

There is not much overhead in proc format so rerunning the code shouldn't be much of an issue. Why were you worried about rerunning it?

Astounding
PROC Star

I'm a little too rushed to spell it out in detail, but here's the idea.

 

Run PROC FORMAT, using the CNTLOUT= option.  That gives you a SAS data set holding all the information needed to generate the format in its current form.

 

Modify the SAS data set, adding an observation that changes two variables:

HLO='O'

Label = 'Other'

 

Use the modified data set as input to PROC FORMAT, using the CNTLIN= option.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2011 views
  • 0 likes
  • 3 in conversation