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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 4868 views
  • 0 likes
  • 3 in conversation