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 have a field that has job numbers in it. Is there a way to do a find that will do 2 things...

1) find any record where the field is empty

2) also find any records where the field contains the word "Blank"

I know how to do each of these on their own, but is there a way to combine the 2 so that only the records show that match both these results?

LR

Create a calculation:

isEmpty(JobNumber) or JobNumber = "Blank"

This will result in a true or 1 if either condition is ture and 0 if both fail.

Do a search on this new field look for 1.

  • Author

OK, makes sense. But is there a way to slightly alter the way this works...

isEmpty(JobNumber) or JobNumber = "Blank"

Looks for an exact match of Blank. Can it look to see if the field contains the word blank in any variation, such as Blank 1, Blank 22, ect.

LR

Sure, just keep adding "or JobNumber = "Blank-whatever" for each permutaion you are likely to get. Or use the PatternCount(JobNumber, "Blank") > 0 function which will look for the string "Blank" and return a positive -- but only if "Blank" is not used legitimately in any job number.

Of course it's easier to stop people from entering an infinite variety of text strings into the database in the first place, and exercise some control of what goes into the fields.

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.