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
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.