BookmarkSubscribeRSS Feed
deleted_user
Not applicable
How do I specify the length of v?

proc sql noprint;
select rate
into :v
from test1;
quit;
5 REPLIES 5
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Most likely you will want to use a FORMAT= on the SELECT clause, specified after the SAS variable name -- this would be if you are attempting to truncate a CHARACTER variable or if you want to "format" the output of a NUMERIC variable.

Scott Barry
SBBWorks, Inc.
DanielSantos
Barite | Level 11
Simply as this:
[pre]
proc sql noprint;
select rate length=8
into :v
from test1;
quit;
[/pre]
But I suspect that's not what you need.
As Scott suggested, I'm guessing you want to format rate in some specific way.

Cheers from Portugal.

Daniel Santos @ www.cgd.pt
Peter_C
Rhodochrosite | Level 12
same as normal
format the source, and that is what appears in the destination
proc sql noprint;
select rate format= best20.
into :v
from test1;
quit;

of course, if you want to remove leading/trailing blanks

%let v = &v ; Message was edited by: Peter.C trim lead/trailing blanks
deleted_user
Not applicable
This is what I want.
I just used format=5.2 instead of best20.
Thanks.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 5 replies
  • 3383 views
  • 0 likes
  • 4 in conversation