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.

Catch up on SAS Innovate 2026

Dive into keynotes, announcements and breakthroughs on demand.

Explore Now →
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
  • 1311 views
  • 1 like
  • 2 in conversation