@vipul wrote:
I am a beinner in sas and data feild and have just started using these tools and techniques..so seek some help.
This is a sample code that i am using but it is showing some error ..data datefilter;
set formatteddata;
where vehicle_type ='Passenger' and Latest_Launch<"01-oct-14"d;
run;ERROR IS:
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
61
62 data datefilter;
63 set formatteddata;
64 where vehicle_type ='Passenger' and Latest_Launch<"01-oct-14"d;
ERROR: WHERE clause operator requires compatible variables.
65 run;NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.DATEFILTER may be incomplete. When this step was stopped there were 0 observations and 15 variables.
WARNING: Data set WORK.DATEFILTER was not replaced because this step was stopped.CAn some one help.
Posts: 1
Participants: 1