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.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2524 views
  • 0 likes
  • 3 in conversation