Hello Everyone!
This is for a personal project of mine. I need to aggregate a ton of csv files to get my data prepped.
I have 2 datetime columns in my csv files which look like:
datetime_beginning_utc,datetime_beginning_ept
2/11/2022 5:00:00 AM,2/11/2022 12:00:00 AM
The date part of these values are in the mm/dd/yyyy format. When using proc import, the datetimes are being stored as:
Is there anyway to fix this? or any work arounds?
I'm using SAS 9.4
@staplegunjelly wrote:
Hello Everyone!
This is for a personal project of mine. I need to aggregate a ton of csv files to get my data prepped.
I have 2 datetime columns in my csv files which look like:
datetime_beginning_utc,datetime_beginning_ept
2/11/2022 5:00:00 AM,2/11/2022 12:00:00 AM
The date part of these values are in the mm/dd/yyyy format. When using proc import, the datetimes are being stored as:
Is there anyway to fix this? or any work arounds?
I'm using SAS 9.4
What about that is wrong?
If you expected SAS to GUESS that by 2/11 you meant FEB 11th instead of 2nd of NOV then change the setting of the DATESTYLE system option from DMY to MDY before running PROC IMPORT.
Or better still write your own program to read the CSV file and you can have full control over how the text strings are read.
@staplegunjelly wrote:
Hello Everyone!
This is for a personal project of mine. I need to aggregate a ton of csv files to get my data prepped.
I have 2 datetime columns in my csv files which look like:
datetime_beginning_utc,datetime_beginning_ept
2/11/2022 5:00:00 AM,2/11/2022 12:00:00 AM
The date part of these values are in the mm/dd/yyyy format. When using proc import, the datetimes are being stored as:
Is there anyway to fix this? or any work arounds?
I'm using SAS 9.4
What about that is wrong?
If you expected SAS to GUESS that by 2/11 you meant FEB 11th instead of 2nd of NOV then change the setting of the DATESTYLE system option from DMY to MDY before running PROC IMPORT.
Or better still write your own program to read the CSV file and you can have full control over how the text strings are read.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.