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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 2586 views
  • 0 likes
  • 4 in conversation