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

I have an existing SAS table and I want to add a date column to the table. Is there an easy way to add say JAN 2003? I am using SAS enterprise Guide. I have been going to Edit - Columns - Add Columns and adding the numeric value, however this is very cumbersome. It would be much easier to add just Jan 2003 and have SAS read it as a date.

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
What numeric value? 15706? You can add a date value with a date literal as : "01Jan2003"d but that does mean including a day. You can then apply a format to display the date as desired.

View solution in original post

3 REPLIES 3
sassharp
Calcite | Level 5

data new;

set old;

date=define date format as needed;

run;

 

Reeza
Super User
What numeric value? 15706? You can add a date value with a date literal as : "01Jan2003"d but that does mean including a day. You can then apply a format to display the date as desired.

Kenmar
Calcite | Level 5

Thank you! I was missing the " "d.

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!

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.

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