Hi @Sowmya12,
If the first part of your data is always the year, then the below might help (assuming your date is character, based on what you've shown).
The scan() function selects part of string that is separated by a specific character(s).
data have;
input my_date : $char10.;
datalines;
2019/un/un
11/un/un
;
data want;
set have;
y = scan(my_date,1,'/');
run;
Kind regards,
Amir.
11 is not a year (2011 would be).
If you don't even know the order of the parts (YMD, DMY or MDY), you can't solve this.
Hi @Sowmya12,
If the first part of your data is always the year, then the below might help (assuming your date is character, based on what you've shown).
The scan() function selects part of string that is separated by a specific character(s).
data have;
input my_date : $char10.;
datalines;
2019/un/un
11/un/un
;
data want;
set have;
y = scan(my_date,1,'/');
run;
Kind regards,
Amir.
I would store year as a number with length 3. This allows years up to 8192, consumes the least space, and can be used in calculations or functions without conversion.
True.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.