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

Hello all;

 I try to create a SAS data set from raw data file.  For example, the structure of raw data file is like that;

      11412/12/00LAX

Now, when i submit SAS Code as :

   data Sas-data-set-name;
     infile 'raw-data-filename';
     input Flight $ 1-3 Date $4-11 Dest $ 12-14;
   run;

it works fine. But when i dont use $ sign for Date variable, it becomes missing value. As i know SAS store date values as numeric.So why we have to use $ sign for date when we create SAS data set from raw data file.

Any help is appreciated !

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

You need to assign an informat (fitting to the way dates are written in the infile) to your date variable. Then you can read the date as numeric.

Also assign a date display format, to make the date value human-readable.

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

You need to assign an informat (fitting to the way dates are written in the infile) to your date variable. Then you can read the date as numeric.

Also assign a date display format, to make the date value human-readable.

BURHAN_CIGDEM
Fluorite | Level 6
Thank you Mr.Bremser, i got it.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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