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

Recommended Posts

Posted

Hi, I'm stuck on what I think should be something simple. I have several numeric fields (Number1, Number2, Number3, etc). I need another field (MinNumber) to calculate the smallest nonzero value from the set of numeric fields.

I tried using the Minimum function but that won't find the smallest nonzero value (it only returns zero because one of the numeric fields invariably contains 0). Nested If/Then statements doesn't seem appropriate since there are a few dozen numeric fields to check. TIA.

Posted

Assuming you want to calculate the lowest nonzero value for the relevant record (ie: not all the records in the table or found set) , a calculation could be:

Min ( Case ( Number1 > 0 ; Number1 ) ; Case ( Number2 > 0 ; Number2 ) ; Case ( Number3 > 0 ; Number3 ) )

Peter

Posted

Bingo! That works perfectly. In looking thru the spaghetti that is my code, I just couldn't get from Point A to Point B.

Thanks again.

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