I want to use where statement to select a date between two character dates(date9.)..
what I have written is like:
data class1.dev_data1; set class1.new_dev3; where '01MAY2013'd < Loan_disbursement_date_ < '30APR2014'd; run;
but it gives a error as "Where clause operator requires compatible variables".
Run
proc contents data = class1.new_dev3;
run;
and see what type of variable Loan_disbursement_date_ is..
Did you not ask the same question a few days back? If not then there is a question from a few days back exactly the same. What this is telling you is that the variable
Loan_disbursement_date_
Is not a numeric variable. Dates and times are numerics and you cannot compare something which is not numeric with numerics in that kind of logic sequence. Fixing your data so that the date is actually a numeric SAS date would sort this, so would:
data class1.dev_data1; set class1.new_dev3; where '01MAY2013'd < input(Loan_disbursement_date_,date9.) < '30APR2014'd; run;
Assuming that it is in date9. format.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.