what is option year cuttoff in sas

Answers were Sorted based on User's Feedback



what is option year cuttoff in sas..

Answer / prasad

by this option, we can set the year span like -
Options yearcutoff=2050
so it sets year from 2050 to 2149 .., not 2050 to 2049.

Is This Answer Correct ?    19 Yes 3 No

what is option year cuttoff in sas..

Answer / ankit

by this option we can set the year span like
Options yearcutoff=2050
so it sets year from 2050 to 2049 ..

Is This Answer Correct ?    2 Yes 15 No

Post New Answer

More SAS Interview Questions

Difference Between Scan and Substr

2 Answers  


how to remove duplicates using proc sql?

0 Answers  


what are the differences between proc report and proc tabulate?

3 Answers  


If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn?t have a value?

6 Answers  


/* This is example of age caluculate wihtout to display perfect days and years in output window */ data age; retain dob "12jun2003"d now "24may2011"d; age1=now-dob; age=(now-dob)/365.25; years=int(age); days1=round((age-years)*365.25); months=month(now)-1; if days1 gt 30 and months in(12,10,8,6,4,2)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month)*30.4375)+1; drop days1 month1 month; end; else if days1 gt 30 and months in (1,3,5,7,9,11)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month) *30.4375); drop days1 month1 month; end; drop age age1; proc print data=age; format dob now date.; run;

1 Answers   Emerio,






Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?

0 Answers  


what is business intelligence? : Sas-bi

0 Answers  


· What are some good SAS programming practices for processing very large data sets?

6 Answers   Quintiles,


Enlist the syntax rules followed in sas statements.

0 Answers  


Differentiate input and infile.

0 Answers  


what is information maps?

0 Answers   CitiGroup,


what are different type of sas servers ? On which server does the sas code execute ?

4 Answers   TCS,


Categories