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.

Featured Replies

I want to have a field in each record of a data base called num that is a count of how many of 20 text fields (F1 through F20)in that record contain data.

I could set up 20 more fields (N1 through N20), each of which is a calculation corresponding to one of the F1 through F20 fields which is 1 if the field is not empty and 0 if it is: for instance:N1=If (F1<>"",1,0) And then num could be a sum of N1 through N20.

Is there an easier way?

Dave

Set Num to the following calculation:

( not IsEmpty( F1 ) ) + ( not IsEmpty( F2 ) ) + ( not IsEmpty( F3 ) ) + ... + ( not IsEmpty( F20 ) )

Each time the field isn't empty, the ( not IsEmpty( Fx ) ) will return a 1. If it is empty, it will return a 0. Adding them all together will give you a count of how many have information.

Chuck

  • Author

quote:

Originally posted by Chuck:

Set Num to the following calculation:

( not IsEmpty( F1 ) ) + ( not IsEmpty( F2 ) ) + ( not IsEmpty( F3 ) ) + ... + ( not IsEmpty( F20 ) )

Each time the field isn't empty, the ( not IsEmpty( Fx ) ) will return a 1. If it is empty, it will return a 0. Adding them all together will give you a count of how many have information.

Chuck

Thanks Chuck, That did it.

Dave

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.