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

Recommended Posts

Posted

Using FMP 10.

I manage a database of inventory SKU's using FMP

I need to put a Max Valu Limit on a Calculated Field.

Basically, I'm trying to set up a rule on the Calculated Field that would go something like:

If value >76, value should = 76

 

Any help is much appreciated.

Johnny

Posted

If the field is populated by a calculation, try

 

Min(<YourCalculation>; 76)

 

If the field is populated by a user input, you will have to make it a number field with an auto-entered calculation (with Do Not Replace checkbox unchecked)

 

Min(YourField ; 76)

  • Like 1
Posted

A little more verbose but probably easier to understand:

 

Let(

 

_result = <your calc> ;

 

If(

_result > 76 ; 76 ;

_result

)

)

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