1 :: Suppose date is 05sep2005; i want the output like 05sep2005:00:00:00 ; how it will come?
data test_date;input date;
informat date datetime18;
cards;
05sep2005:00:00:00
run;
proc print data=test_date;
format date datetime18.;
run;
|
2 :: What is option year cuttoff in sas?
by this option we can set the year span likeOptions yearcutoff=2050
so it sets year from 2050 to 2049 ..
|
3 :: How to CREATE an external dataset with sas code?
I thought about sth like this:Data _null_;
filename fileref <device-type>
dsnname='path'
run;
something like this buy it do not work.
and i would like to add BLK, DISP; UNIT SIZE
|
4 :: How to add a number to a macro variable?
Use %eval to do simple calculation for macro variables.e.g.,
data _null_;
%let a = 1;
%let b = %eval(&a+1);
%put a=&a b=&b;
run;
|
5 :: Code the tables statement for a single-level (most common) frequency?
one level: tables a b c;
|




Webmaster Said:
Thank you.