BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Q1983
Lapis Lazuli | Level 10
data have;
x='2018-10-01 00:00:00:00';
y=input(x,anydtdtm.);

z=datepart(y);
put z;
format z YYMMDDN8.;
zz=put(z,YYMMDDN8.);
run;

In this example zz is converted to a character from a date format.  In my actual data when I use the above routine it stays as a date.  It will not change from a date to a character.  Is there some other way to convert from date to character?

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
Opal | Level 21

If you want a character date there is no need to convert it to a SAS date:

data have;
  x = '2018-10-01 00:00:00:00';
  zz = compress(substr(x, 1, 10), '-');
  put _all_;
run;

View solution in original post

2 REPLIES 2
SASKiwi
Opal | Level 21

If you want a character date there is no need to convert it to a SAS date:

data have;
  x = '2018-10-01 00:00:00:00';
  zz = compress(substr(x, 1, 10), '-');
  put _all_;
run;
ballardw
Super User

 


@Q1983 wrote:

 

Is there some other way to convert from date to character?

Once a variable type is assigned to a variable name in a SAS data set then the type cannot change. If you want to reuse the variable name with a new type then you basically rename the old variable to something else (or drop from the data set) and the create a new variable of the desired name.

 

You will find lots of examples on the forum related to fixing proc import created inconsistent variable types that look something like this:

data new;
   set old (rename=(thisvar=oldnumvar);
   thisvar = put(oldnumvar,z15.);
run;

The format changes, or sometimes an INPUT function is called with an old character variable to create numeric.

There might follow a call to Proc Datasets to delete the prior dataset "old" and rename "new" to "old" to reuse the same data set name.

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 143 views
  • 1 like
  • 3 in conversation