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
;
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
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.