Hello, I have dates that are important for merging that come in the following character format: 1998Q1 1998Q2 1991Q1 I would like these to be turned into SAS dates, so that I can change the format, and use them to merge with other SAS dates. I would like to merge with another dataset that has SAS dates in the yyq. format, after using intnx("QTR", date, 0) to turn the dates into quarter measures. I am using the following code, but that is not working: data want; set have; newdate = input(put(date,6.),YYQ.); format newdate yyq.; run; I know that this is probably pretty simple, but just let me know. Thanks, John
... View more