BookmarkSubscribeRSS Feed
AliMN
Calcite | Level 5

Can you please help to change SAS EG dates? it's SAS EG version: 5.1

this is the current format I dont want

Type: Character        Length:500

Group: Character

Format: $500.

Informat:$500.

2014-01-01 00:00:00

2014-01-01 00:00:00

2014-01-01 00:00:00

I want this below format

Type: Numeric       Length: 8

Group: Date

Format:DATETIME20.

Informat:DATETIME20.

01JAN2014:00:00:00

01JAN2014:00:00:00

01JAN2014:00:00:00

Your help is greatly appreciated.

5 REPLIES 5
DBailey
Lapis Lazuli | Level 10

Are you importing a file using the EG wizard?  If so, you can change the type and format of the data in the wizard.  If not, then what are you doing that is creating these text formats?

AliMN
Calcite | Level 5

I tried to change it in the wizard but after I changed the whole column become blank.

Reeza
Super User

Use the conversion function

input(date_var, anydtdtm.)

You can use this in a query with a calculate column or in a data step.

AliMN
Calcite | Level 5

Reeza - Do you mean like the following?
newdatecolumn = input(date_var, anydtdtm.)

Can you explain more?

Reeza
Super User

In a query, create a calculated field, custom calculation, using the above formula.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 5 replies
  • 1137 views
  • 0 likes
  • 3 in conversation