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

When creating new column formats in the proc format step, why do you sometimes need a dollar sign before the format name and sometimes you don't? In this example I cam trying to make two new custom column formats - genftm and hrange. 

proc format;
    value $genfmt 'F'='Female'
                  'M'='Male';
  
    value hrange 50-57='Below Average'
                 58-60='Average'
                 61-70='Above Average';
run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

The dollar sign indicates that the format translates character strrings (such as "F" and "M").  No dollar sign means that the format translates numbers.

 

The dollar sign is actually part of the format name, so don't leave a space after the dollar sign.

View solution in original post

1 REPLY 1
Astounding
PROC Star

The dollar sign indicates that the format translates character strrings (such as "F" and "M").  No dollar sign means that the format translates numbers.

 

The dollar sign is actually part of the format name, so don't leave a space after the dollar sign.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 386 views
  • 1 like
  • 2 in conversation