Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Finding Smallest Nonzero Amount from Several Field

Featured Replies

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.

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

  • Author

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.

Create an account or sign in to comment

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.