Jun 10, 2005 #1 Steve95 MIS Nov 3, 2004 265 US Hi All Iam trying to create e.g. if {dob}>= 21 and <=30 then 1 else 0 but cant seem to get the correct syntax, please can you help. This is my last report for this project and my mind is numb..... Kind Regards
Hi All Iam trying to create e.g. if {dob}>= 21 and <=30 then 1 else 0 but cant seem to get the correct syntax, please can you help. This is my last report for this project and my mind is numb..... Kind Regards
Jun 10, 2005 #2 kskid Technical User Mar 21, 2003 1,767 US Try this {dob}>= 21 and {dob} <=30 -lw Upvote 0 Downvote
Jun 10, 2005 Thread starter #3 Steve95 MIS Nov 3, 2004 265 US you saved the day....... My mind had gone blank....it is Friday~! Thank you very much...... Upvote 0 Downvote
Jun 10, 2005 #4 lbass Technical User Feb 9, 2002 32,816 US Try: if {dob}in 21 to 30 then 1 else 0 -LB Upvote 0 Downvote
Jun 10, 2005 #5 Turkbear Technical User Mar 22, 2002 8,631 US Hi, Also: {dob} in 21 to 30 To Paraphrase:"The Help you get is proportional to the Help you give.." Upvote 0 Downvote