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.

Find on non-indexed field

Featured Replies

I have 5 fields:

group (number),

record_number(calc, Get(recordnumber),

record_number_max (summary, max of record_number)

rec_num_getsummary (calc, getsummary(record_number_max; group)

highest_record_number_flag (calc as text, if(rec_num_getsummary = record_number; "X", "")

I want to get an x in highest_record_number_flag when I have the maximum record number in each group. This works fine.

However, when I try to find only these record, by placing a search on X in the highest_record_number_flag, or searching on non-blank with * in this field, I get the message "No records match this set of find requests."

Do I have another misunderstanding? Can I not do a find in this field? Do I need to also place a criteria in an indexed field? Thanks for any advice.

The problem here is that summary fields and Get(RecordNumber) are dependent on the found set and its sort order. So the information doesn't exist when in Find Mode.

I would suggest creating a self-relationship based on group, with no sort order defined, and a calculation (with a numeric result) of

serial = Last(selfrelationship::serial)

where serial is your unique id field. Format this calculation field as a checkbox, using a value list of 1. Then the field will display a check, X, when true and nothing when false.

If you really want to use an actual "X", then

Case( serial = Last(selfrelationship::serial); "X" )

with a text result, should work.

  • Author

Your first sentence cleared my thinking completely. Also, thanks for the suggestion on the last function. I'm rolling 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.