Hello Everyone,
I am trying to find the difference in two dates in number of days. I have dates in numeric format as follows:
| 20150218 |
| 20150216 |
| 20150219 |
| 20150220 |
| 20150315 |
| 20150317 |
| 20150319 |
| 20150320 |
| 20150321 |
| 20150322 |
Now I want the difference of theses dates from 20161001 in number of days.
Thanks in advance !
SAS has better ways to store dates, instead of using an 8-digit number. If you used SAS's usual methods, you could just code:
difference = '01oct2016'd - mydate;
Given the data you already have, you will need a more complex formula:
difference = '01oct2016'd - input(put(mydate, 8.), yymmdd8.);
SAS has better ways to store dates, instead of using an 8-digit number. If you used SAS's usual methods, you could just code:
difference = '01oct2016'd - mydate;
Given the data you already have, you will need a more complex formula:
difference = '01oct2016'd - input(put(mydate, 8.), yymmdd8.);
How did you import the CSV?
That should be under your control and best practice would be to read it in as a date.
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.