Gaz 007 Posted July 20, 2006 Posted July 20, 2006 I have a claculation If ( (accomtype = "Residence") and (IsEmpty ( Res Alloc::Apt Num ) = 1) ; "No" ; "Yes") what I want to do is if the accomtype field is set to residence and the field Apt Num in the Res alloc table is empty then it should equal no otherwise yes at the moment it always says yes.
Inky Phil Posted July 20, 2006 Posted July 20, 2006 HI Gaz try this Case(accomtype = "Residence" and IsEmpty (Res Alloc::Apt Num);"No";"Yes") Phil ps look up the case() function in your help files for a broader explanation.
Gaz 007 Posted July 20, 2006 Author Posted July 20, 2006 how would this work if i had 2 things to check Case(accomtype = "Residence" and IsEmpty (Res Alloc::Apt Num); Case(accomtype = Hotel" and IsEmpty (Hotel Alloc::Rm Num);"No";"Yes") is this correct, i want to be no if accomtype is residence and the apt num is blank or if the accomtype is hotel and rm number is blank otherwise it should be yes.
rellis32 Posted July 20, 2006 Posted July 20, 2006 Case( accomtype = "Residence" and IsEmpty ( Res Alloc::Apt Num ) ; "No" ; accomtype = "Hotel" and IsEmpty ( Hotel Alloc::Rm Num ); "No" ; "Yes" ) So your case statement is formatted like this: Case ( test1 ; result1 ; test2 ; result2 ; default result )
Recommended Posts
This topic is 6763 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now