Skip 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.

Field setup for series of codes?

Featured Replies

  • Newbies

Hi: I'm setting up a relatively simple database to keep track of particular codes assigned to specific people. All that is necessary is the usual contact information plus a list of these codes (5 or 6 alphanumeric characters). Each contact may have tens to thousands of these unique codes assigned to them, usually in blocks of 5, 25, 50 or 100.

For example, Jon Smith may be assigned the following code ranges: AA100-AA124, ABC150-ABC199, and 200GH-249GH. Once entered, I will need to be able to run a search for codes within those ranges, like AA115, ABC165, or 215GH and pull up Jon Smith's record.

Does this make sense? It seems like it should be a relatively simple matter but I have no idea how to implement this. Any assistance will be greatly appreciated - thanks!

Edited by Guest

There should be a record for each assigned range, so you should have two files: PEOPLE and RANGES. The RANGES file needs basically only 3 fields: Low, High and PersonID (to relate back to the person to whom this range has been assigned to).

To find a code, you would search the RANGES file for records where:

Low ≤ code

AND

High ≥ code

Although this scheme might work quite well with text strings (if some limitations are observed), a safer approach would be to translate the codes into numeric values, and search these calculation fields instead.

Create an account or sign in to comment

Important Information

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

Account

Navigation

Search

Search

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.