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

  • Newbies

I am not a programmer and don't know if this is possible but presume it is. Can someone tell me how I can take the alphanumeric contents of a field (let's say the word, "possible") and create a new field with the spelling reversed, i.e. "elbissop". I don't know enough about Filemaker to do this but I know a little about the program.

Thanks.

Some programming languages have a Reverse() function that does what you want, but not Filemaker. You will have to use a script like this.

code:


Set Field gTempText = MyDataField

Set Field MyReversedField = ""

Loop

Exit Loop If Length(gTempText)=0

Set Field MyReversedField = MyReversedField & Left (gTempText,1)

Set Field gTempText = Middle(gTempText,2,64000)

End Loop


gTempText is a global text field

MyDataField is the original text field

MyReversedField is the result

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.