I am trying to change a date which is held in a string and of the format 01 DEC 2012 to a SAS date. Is this easy to do?
Also, I have a character field holding number which I would like to convert to number formats. i.e. 1,769 as a character field of length 10.
Yes, input reads text and converts to numeric (dates and times are actually numbers), put does the reverse so:
data want;
set have;
Thanks rw9, that works for the dates. In the case of a the number it's not working. My number is currently a string of the form:
1,569
79
104
1,333
and so on. It's working for the numbers with commas but not the other ones.
Ah, you need to use the comma format then:
new_num=input(text_num,comma8.);
All formats can be found in the online help:
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.