Hi, I have one dataset like
id date ex: id date
1 13 1 13Oct2011
2 14 2 14Oct2011
3 15 3 15Oct2011 --->this is the current date
here i want date format like 13Oct2011,14Oct2011 how we can
modify the numeric to date format plz answer.

Answer Posted / kiran

data dsn;
input id date;
format date date9.;
cards;
1 13
2 14
3 15
;
run;

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the use of proc sql? : Sas programming

590


what is sas data set?

664


why is sas data integration studio important? : Sas-di

557


What is the difference between match merge and one to one merge?

685


Which statement does not perform automatic conversions in comparisons?

1200






Are you involved in writing the inferential analysis plan? Tables specifications?

3478


What is Linear Regression?

683


Hi,by usining ptf how we have to combine (likr merge)10 datasets at a time in the oracle database(and write a macro code also)?Like this i have a douts a lot if you dont mind may please send one text mail for me(madhusudhanap16@gmail.com)?

1201


how are numeric and character missing values represented internally? : Sas programming

617


How do you delete duplicate observations in sas?

571


Mention common programming errors committed in sas ?

645


Differentiate between format and informat? : sas-grid-administration

575


Mention what are the data types does SAS contain?

695


What is the basic structure of a sas program?

594


Describe the function and utility of the most difficult SAS macro that you have written?

2021