data have; input d date14.; datalines; 20may2021 5:15 ; run; data want; input d $ date9.; datalines; 20may2021 ; run;
First, note that dates should be numeric, not character. So this DATA step would need to change:
data want;
input d $ date9.;
datalines;
20may2021
;
Get rid of the dollar sign and apply a format:
data want;
input d date9.;
format d date9.;
datalines;
20may2021
;
Second, note that you don't have to read in everything on the line. You can pick and choose. So this DATA step still works when the data contains the time and you only want the date:
data want;
input d date9.;
format d date9.;
datalines;
20may2021 05:15
;
data have; input d date14.; datalines; 20may2021 5:15 ; run; data want; input d $ date9.; datalines; 20may2021 ; run;
Please state a clear question that you want to have an answer to.
Hello @aanan1417
Try this
data have (drop=t);
informat d date9. t time5.;
format d date9.;
input d t ;
datalines;
20may2021 5:15
;
run;
The output will be as follows
First, note that dates should be numeric, not character. So this DATA step would need to change:
data want;
input d $ date9.;
datalines;
20may2021
;
Get rid of the dollar sign and apply a format:
data want;
input d date9.;
format d date9.;
datalines;
20may2021
;
Second, note that you don't have to read in everything on the line. You can pick and choose. So this DATA step still works when the data contains the time and you only want the date:
data want;
input d date9.;
format d date9.;
datalines;
20may2021 05:15
;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.