hi guys,
Hope you could help with this simple request.
So basically I want to extract the minimum date in an existing SAS dataset.
I used following to extract it, however the date format is not desired. It is different from original data source.
Any idea on how i could extract the the ddmmyyy format?
Thanks in advance.
tonywu_0-1619162081300.png
tonywu_1-1619162091239.png
Try to specify the format like this
proc sql;
create table sample as
select var format=date9. from test;
quit;
thanks mate, it worked!
thanks mate, it worked!
Add a format definition
min(from_date) as min_from format=yymmdd10.
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.