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

Hello Experts,

 

I'm wondering if there is an easiest method to convert the character data to numeric (without applying the substr function). The data is:

 

MarieT_0-1616145762662.png

 

Thank you very much for your help !

 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Since these seem to be dates (although in VERY STUPID format with 2-digit years!), use INPUT with DDMMYY8.:

data test;
chardata = "17/02/22";
numdata = input(chardata,ddmmyy8.);
format numdata yymmdd10.;
run;

View solution in original post

1 REPLY 1
Kurt_Bremser
Super User

Since these seem to be dates (although in VERY STUPID format with 2-digit years!), use INPUT with DDMMYY8.:

data test;
chardata = "17/02/22";
numdata = input(chardata,ddmmyy8.);
format numdata yymmdd10.;
run;
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
  • 677 views
  • 1 like
  • 2 in conversation