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

How do I save a SAS numeric date value into SAS date format in PROC SQL. Currently, I have  a DATA step to convert the variable to SAS date format using FORMAT mydate MMDDYY10.   Can I directly convert the SAS numeric value to date format(mm/dd/yyyy)  in PROC SQL ? Appreciate any assistance. Thank you

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Yep.

    intnx('month',serv_from_date, 0,'e') as EOM_DOS format=mmddyy10.

View solution in original post

5 REPLIES 5
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Sure, you can use SAS functions and formats in SQL so long as your not using pass-through, e.g:

proc sql;
  create table want as
  select date_num format=mmddyy10.
  from  have;
quit;
lmtamina
Obsidian | Level 7

I am creating a new variable for the end of the month of my service date  , can I use the FORMAT function below? Sorry, I am a SAS newbie.

proc sql;

 create table want as
   select

    serv_from_date,

    intnx('month',serv_from_date, 0,'e') as EOM_DOS

   
  from  have;
quit;

 

kiranv_
Rhodochrosite | Level 12

 

Just use @RW9 code within new variable as

proc sql;

 create table want as
   select

    serv_from_date,

    intnx('month',serv_from_date, 0,'e') as EOM_DOS format =mmddyy10.

   
  from  have;
quit;

 
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Yep.

    intnx('month',serv_from_date, 0,'e') as EOM_DOS format=mmddyy10.

lmtamina
Obsidian | Level 7

Perfect. Thank you all!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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