Hi,
I have a field (table_date) that's in date time format: (sample: 08MAY2017:08:00:00.000) and I want to select records where the date is less than today()
here is what I have so far but it's not working
proc sql;
create table temp_del1
as
select * from temp_weekly_data
where
datepart(table_date) < datepart(today());
run;
please advise
Remove the datepart function from the today() function. i.e.,
datepart(table_date) < today();
Also, end your proc sql call with a quit; rather than a run; statement
Art, CEO, AnalystFinder.com
Remove the datepart function from the today() function. i.e.,
datepart(table_date) < today();
Also, end your proc sql call with a quit; rather than a run; statement
Art, CEO, AnalystFinder.com
thanks for your assistance
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.