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

I have a variable DATE that has a value of 2012-04-05. How do I convert that value into 05Apr2012?

Christos

1 ACCEPTED SOLUTION

Accepted Solutions
Haikuo
Onyx | Level 15

Hi,

From your description, it is difficult to tell whether you want to change format for a numeric variable(dt1) or you want to make change on a character variable(dt2). Any way, the following example addressed both.

data have;

input dt1 yymmdd10. @1 dt2 $10.;

format dt1 yymmdd10.;

cards;

2012-04-05

run;

data want;

   set have;

    format dt1 date9.;

    dt2=put(input(dt2,yymmdd10.),date9.);

run;

proc print;run;

Haikuo

View solution in original post

1 REPLY 1
Haikuo
Onyx | Level 15

Hi,

From your description, it is difficult to tell whether you want to change format for a numeric variable(dt1) or you want to make change on a character variable(dt2). Any way, the following example addressed both.

data have;

input dt1 yymmdd10. @1 dt2 $10.;

format dt1 yymmdd10.;

cards;

2012-04-05

run;

data want;

   set have;

    format dt1 date9.;

    dt2=put(input(dt2,yymmdd10.),date9.);

run;

proc print;run;

Haikuo

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
  • 1 reply
  • 716 views
  • 0 likes
  • 2 in conversation