Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to convert a given date value into SAS date

Answer Posted / vinay

/*let date is '10/07/1985'/*
/*SAS CODING*/
data date;
input date $;
Var_Date=input(date,mmddyy10.);/*Apply format within input
function to convert text value to number value*/
/*now extract value of month,date and year through date
functions*/
m=substr(Var_Date,4,2);
d=substr(Var_Date,1,2);
y=substr(Var_Date,7,4);
sasdate=mdy(m,d,y);
cards;
10/07/1985
;
run;
proc print dtat=date;
run;

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

describe the interaction table in sas di? : Sas-di

1027


which date function advances a date, time or datetime value by a given interval? : Sas programming

1038


what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming

999


How to convert a numeric variable to a character variable?

1197


Describe the ways in which you can create macro variables? : sas-macro

1057


Which command is used to perform sorting in sas program?

1042


how does sas handle missing values in functions? : Sas programming

1196


Which command is used to save logs in the external file?

1088


Describe what are the different levels of administrative users in sas? : sas-grid-administration

1026


For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration

990


what is sas business intelligence? : Sas-bi

1170


Have you ever used the SAS Debugger?

1749


What is PROC in SAS?

1044


what are sas/access and sas/connect? : Sas programming

983


If you could design your ideal job, what would it look like?

2920