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.

numerical field with text

Featured Replies

I have an ID system in my database which consist of 2 letters (always the same 2 letters) then numbers (which go up 1 increment for every client in the database....ie TB1, TB2, TB3 etc . i want to sort my db so that it is in order of numbers however I am unable to do this as the sort function rads it as text and organises it in order of TB1, TB10, TB100, etc how do i sort this?

You could create a calculation number field that extracts all of the characters to the right of the first two (TB), then sort the records based on that field. You would use the Length() function to determine the length of the string. Then assuming you always had two characters before the numbers, you would use the Right () function to get the trailing digits.

Right ( idFieldName ; Length ( idFieldName ) - 2 )

Would return the characters you want. Just make sure that the popup menu in the calc dialog is set to return a number, not text. That way it will sort based on the numerical values.

Another option is to just use numbers for your ID instead of text. Since the TB is always the same, you really don't need it in your ID. If you really want to display that text. Just create a calculation text field

"TB" & idFieldName

that concatenates the two things.

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.