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
;
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
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.