Hello everyone,
I hope you are well.
I know my question might seem basic but I can't seem to figure it out.
I am trying to filter my data based on a date variable
My date variable is formatted using yymmdd10.
I tried
Where 20080102 <=date <= 20101231;
Where '20080102'd <=date <= '20101231'd;
Where "2008-01-02" <=date <= "2010-12-31";
Sorry for taking your time. Thank you very much for your help.
Date literals in SAS use the DATE format. The format attached the variable does not matter as the format does not modify the stored value.
Where '02JAN2008'd <=date <= '31DEC2010'd;
Date literals in SAS use the DATE format. The format attached the variable does not matter as the format does not modify the stored value.
Where '02JAN2008'd <=date <= '31DEC2010'd;
Oh I did not know that!
Thank you very much Tom. You are always very helpful.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.