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

Hello, 

I have years appear as 1990, 1991, 1992 and I need them to appear as 19900101, 19910101, 19920101

How would you go about doing this conversion?

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
If your variable is a date, you would change the format. If it's just a number, use MDY() to create a SAS date and then apply the correct format. The format you want is YYMMDDN8.

format dateVar yymmddn8.;

https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.5&docsetId=leforinforref&docsetTarge...

View solution in original post

4 REPLIES 4
novinosrin
Tourmaline | Level 20

Please use MDY function and assign 1 for date and month-

 


data have;
 do year=1990 to 2000;
  output;
 end;
run;

data want;
 set have;
 date=mdy(1,1,year);
 format date yymmdd10.;
run;

K_S
Obsidian | Level 7 K_S
Obsidian | Level 7

I did and now the formatting is an issue. 

I got long numbers that I think are SAS date values. What format to use to have the dates appear as YYYY0101?

Reeza
Super User
If your variable is a date, you would change the format. If it's just a number, use MDY() to create a SAS date and then apply the correct format. The format you want is YYMMDDN8.

format dateVar yymmddn8.;

https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.5&docsetId=leforinforref&docsetTarge...
K_S
Obsidian | Level 7 K_S
Obsidian | Level 7

THANK YOU THANK YOU THANK YOU!!!!!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 4 replies
  • 627 views
  • 2 likes
  • 3 in conversation