Hello Friends, I have character date in YYMM format.(Column Name EXPDATE) e.g. '2004' which means April 2020 '2104' which means April 2021 '2204' which means April 2022 '2304' which means April 2023 How to convert it into date format ? Being a beginner in SAS I googled the same and use below mentioned logic format exp date9.; Exp = intnx('month', input(put(EXPDATE,4.), yymmn4.), 1)-1; ; Which gives me output 30Apr1920 instead of 2020 and similarly for all remaining values where YY value is above 20. Please help me to resolve the same. Thanks, Prasad Devasthali Business Analyst,HDFC Bank
... View more