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

I have a table where the SAS dates for fst service and birthday are

      8    BIRTHDAY                Num       8    DATE9.    DATE9.      BIRTHDAY

I am trying to reformat in my proc sql as yyyymmdd

Here is my code and I am just drawing a complete blank

proc sql;*select distinct information;

create table sum0513 as

(select distinct

sys_id,

alt_id,

sub_nbr,

acct_nbr,

fst_srvc_dt format date=yymmdd8.,

first_name,

last_name,

bday format date=yymmdd8.,

age,

from tbl2

group by sys_id, fst_srvc_dt, acct_nbr);

run;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

fst_srvc_dt format=yymmddN8.,


The syntax is FORMAT= and then the format. YYMMDD8 will get you two digit years and hyphens.  The N in code above means to not use any separator, so there is room for four digit years.  You could also use YYMMDD10. if you like the separators.

View solution in original post

3 REPLIES 3
Tom
Super User Tom
Super User

fst_srvc_dt format=yymmddN8.,


The syntax is FORMAT= and then the format. YYMMDD8 will get you two digit years and hyphens.  The N in code above means to not use any separator, so there is room for four digit years.  You could also use YYMMDD10. if you like the separators.

tmm
Fluorite | Level 6 tmm
Fluorite | Level 6


Thanks. Brainfart day.

ballardw
Super User

I think what you're looking for is;

fst_srvc_dt format=yymmdd8.,

or in a datastep

format fst_srvc_dt yymmdd8.;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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