I have the following data set A with variable Mon (format: MONYY5.)
Mon
JAN10
FEB10
MAR10
APR10
MAY10
I want to get only records that after MAR10, but how can i use the GT in the code?
Data B;
Set A;
Where Mon GT 'MAR10'D.;------i KNOW its wrong, but I dont know how to do it right....
RUN;