BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
danielhanbitlee
Calcite | Level 5

Can someone help me read the DATE variable as a DATE7. format? I failed so I am just reading it as character format. The code is below. I am using SAS University Edition. Thanks.

 

data sasuser.amounts;
   input Name $1-12 EmpID 14-18 Date $20-26 Amt 28-29;
datalines;
ANKERTON, L. 11123 08OCT16 92
ANKERTON, L. 11123 15OCT16 43
DAVIS, R.    22298 04OCT16 16
MASTERS, T.  33351 13OCT16 18
MASTERS, T.  33351         27
THOMAS, A.         21OCT16 15
WOLMER, B.   44483
;
1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Assuming that the date always appears in columns 20-26:

 

input .....   @20 date date7.  ...........;

 

You would probably want to add a FORMAT statement to print DATE in the format of your choice when displaying the data.

View solution in original post

2 REPLIES 2
Astounding
PROC Star

Assuming that the date always appears in columns 20-26:

 

input .....   @20 date date7.  ...........;

 

You would probably want to add a FORMAT statement to print DATE in the format of your choice when displaying the data.

danielhanbitlee
Calcite | Level 5

Awesome! Thank you!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1068 views
  • 0 likes
  • 2 in conversation