SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
HeatherNewton
Quartz | Level 8
length mob DQ_6 $20.;

Does this mean putting both mob and DQ_6 into format of length 20 ?

2 REPLIES 2
ballardw
Super User

Length will limit the number of characters stored. If another format is not defined those variables will default to a $20 display format. Character variables typically default to the length. Numeric variables default to BEST, usually Best12. and has nothing to do with the length.

 

A Format assignment can override that default format at any point.

mkeintz
PROC Star

The $20 applies to both of the variables preceding it.

 

It's not exactly a format (which is usually intended to tell SAS how to display a value) - as a LENGTH statement, it tells SAS to store the data in mob and in DQ_6 as strings of length 20 characters.  

--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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