Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 6763 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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.

Posted

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.

Posted

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.

Posted

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 )

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.