- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello!
I am trying to create a marco variable x, that countains numbers. However there are always leading blanks. As i want to use the macro variable later in a table name, it must not contain blanks. I found a solution to this Problem using %sysfunc. However, I am wondering: Is there an "easier" war to do that?
Thank you,
S.
---------------------------------------------------------
/* kleinste Primzahl bestimmen */
title 'Primzahl';
proc sql;
select min(primzahl) INTO x
from temp;
/* Primzahl aus der Liste entfernen */
delete from temp
where primzahl=&x;
quit;
/* kleinste Primzahl formatieren */
%LET X = %sysfunc(cat(&x));
%put Primzahl = &x;
/* Quadrate mod x bestimmen */
data tempi;
do Basis = 1 to &x;
Quadrat_mod_&x = mod(Basis ** 2, &x);
output;
end;
run;
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
One way is simply to add the CAT function to the SQL statement
select cat(min(primzahl))
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
One way is simply to add the CAT function to the SQL statement
select cat(min(primzahl))
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks, Keith. That is a really neat way to use cat() or cats().
If going for the 'more' text-book style approach, OP can also try:
select left(put(min(primzahl),8.))
Regards,
Haikuo
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello Hai.kou,
thank you very much for your help! is there any advantage to your code except for its textbookness? 😉
Regards, Stefan
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I doubt that, as my approach involves one more function than Keith's. That being said, if you want to know the truth difference in term of efficiency, you probably need to benchmark it.
Regards,
Haikuo
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you, Keith! it works 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
select put(min(primzahl),32.-L))
or
%LET X = %left(&x);
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
A "trick" I learned a while back (via SAS-L) is to use "separated by". For a single numeric return value, it will strip leading and trailing blanks.
data one;
x=1;
run;
proc sql noprint;
select x into :mvar separated by " " from one;
quit;
%put *&mvar*;
HTH,
Scott
Please post your question as a self-contained data step in the form of "have" (source) and "want" (desired results).
I won't contribute to your post if I can't cut-and-paste your syntactically correct code into SAS.