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 7333 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I need to set a field as calculation field.

If condition1, result 1;

else if condition2, result 2;

else condition 3,4,5..., result 3.

I am not sure if I can use If function, since it can only set two results.

How do I do this?

Posted

Do you have "Else If" on 6.0??? If you can is it:


If condition1

      result 1

else if condition2

      result 2

else if (condition3 or condition4 or condition5 or ...)

      result 3

end if 

--sd

Posted

That's because it isn't there for calculations, only in scripts.

You will need to create a calculation using a case statement.

Case(Condition=1, 1,

Condition=2, 2, 3)

HTH

Lee

cool.gif

This topic is 7333 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.