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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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