I'm attempting to create a data subset containing records where the yearmth date variable is < 201809. The yearmth date variable is in yymmn6. format (e.g., "202006"). The following code doesn't work - I always forget how to do date comparisons in SAS. data data2;
set data1;
where yearmth < '201908';
run; Thanks!
... View more