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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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