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 values that DO NOT contain specified value

Featured Replies

  • Author

Say I have a field called NAME in a table.

The names are

BOB

BOB-A

JOE

JOE-A

BILL

BILL-A

How would I write a script to search for and display only the names that DIDN'T have an "A" at the end??

Help is much appreciated.

Thanks!

Say I have a field called NAME in a table.

The names are

BOB

BOB-A

JOE

JOE-A

BILL

BILL-A

How would I write a script to search for and display only the names that DIDN'T have an "A" at the end??

Help is much appreciated.

Thanks!

  • Author

Say I have a field called NAME in a table.

The names are

BOB

BOB-A

JOE

JOE-A

BILL

BILL-A

How would I write a script to search for and display only the names that DIDN'T have an "A" at the end??

Help is much appreciated.

Thanks!

It's the "at the end" that's the hard part.

The Omit option is used to pereform NOT finds. So perhaps an omitted reqiest for "*-A" without the quotes might do the trick. If the hyphen gives problems you may need to put quotes aound the hyphen...

*"-"A

It's the "at the end" that's the hard part.

The Omit option is used to pereform NOT finds. So perhaps an omitted reqiest for "*-A" without the quotes might do the trick. If the hyphen gives problems you may need to put quotes aound the hyphen...

*"-"A

It's the "at the end" that's the hard part.

The Omit option is used to pereform NOT finds. So perhaps an omitted reqiest for "*-A" without the quotes might do the trick. If the hyphen gives problems you may need to put quotes aound the hyphen...

*"-"A

Another option would be to create a 2nd field. The first field would simply have the name, the 2nd would specify the "A" if necessary. Now, when you do a search, you can search for names in the first field, and omit all finds for "A" in the 2nd field.

To display all names with or without the "A", create a calc field that joins them both.

Another option would be to create a 2nd field. The first field would simply have the name, the 2nd would specify the "A" if necessary. Now, when you do a search, you can search for names in the first field, and omit all finds for "A" in the 2nd field.

To display all names with or without the "A", create a calc field that joins them both.

Another option would be to create a 2nd field. The first field would simply have the name, the 2nd would specify the "A" if necessary. Now, when you do a search, you can search for names in the first field, and omit all finds for "A" in the 2nd field.

To display all names with or without the "A", create a calc field that joins them both.

  • Author

Thanks!

It actually worked best by running a simple loop. I did a find for all of the names,

then..

Go to First Record

If (Right(Name;2)="-A")

Then Omit Record

Go to Next Record ; Exit after last.

Basically trimmed out records I didn't need.

Thanks for everyones help

  • Author

Thanks!

It actually worked best by running a simple loop. I did a find for all of the names,

then..

Go to First Record

If (Right(Name;2)="-A")

Then Omit Record

Go to Next Record ; Exit after last.

Basically trimmed out records I didn't need.

Thanks for everyones help

  • Author

Thanks!

It actually worked best by running a simple loop. I did a find for all of the names,

then..

Go to First Record

If (Right(Name;2)="-A")

Then Omit Record

Go to Next Record ; Exit after last.

Basically trimmed out records I didn't need.

Thanks for everyones help

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.