Hi,
I used the code:
%let start_date=01Jan0001;
%let end_date=31Dec2013;
data Date;
do date="&start_date"d to "&end_date"d;
output;
end;
format date date9.;
run;
data YMD;
set Date;
Year=year(date);
month=month(date);
day=day(date);
drop date;
run;
But, SAS don't recognize the date before 1600-01-01.
Does anyone know how to solve this?
Thanks!
Why do you want to store invalid dates?
Are you using them as some type of special missing value? If so then pick a different date that can be stored in a SAS date variable.
Otherwise just work with your dates as either strings or three separate year, month and day variables.
Not sure I'm clear on the exact issue you mentioned....
" I want to check if the data I use are the coresponding date."
Would you be able to elaborate with an example of the challenge you have?
It becomes very messy to deal with pre-18th century dates, before the adoption of our regular calendar. SAS will not do that for you.
About SAS Date, Time, and Datetime values
If you really need them, use year, month, day values and good luck
This is what I would try. If the foreign date system considers 01-01-0001 as day zero then foreignDate-584388 should give you the corresponding SAS date. If 01-01-0001 is day one then that expression should be foreignDate-584389.
-584388 is '01JAN1600'd - '01JAN3200'd
@hua wrote:
Thanks.
Yes, SAS could only recognize the dates after 1600.
I did this in excel. 🙂
You need to double check what Excel may have done. It doesn't recognize dates by default before 1900, at least on my install. I suspect you ended up with a TEXT value in Excel not an actual date. See what happens if you change the cell format in Excell to display a different date format.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.