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

I want to concat some text fields: T1&T2&T3

Then assign the concat value to new text field called A (set A = T1&T2&T3)

But before I assign the concat value to A, I like to check if the length of T1&T2&T3 is exceed to its limit. How do I know and check the limit?

Thank you in advance

HP

The limit is 64k characters.

-bd

> I want to concat some text fields: T1&T2&T3

> Then assign the concat value to new text field called A (set A = T1&T2&T3)

> But before I assign the concat value to A, I like to check if the length of T1&T2&T3

> is exceed to its limit. How do I know and check the limit?

HP,

You can use a one-step Set Field script command with the following fields:

T1, T2, T3 - text fields

A - concatenaed field of T1 & T2 & T3

L_Test - maximum length of A field you want set to, make sure it's a number field

SCRIPT STEP:

Set Field ["", " If (Length(T1 & T2 & T3) <= L_Test, T1 & T2 & T3, "") "]

You can then maybe do a "Show Message" step check if the A field equals nothing to notify you when the A field exceeds the maximum limit or however you want to handle it. The key ingredient is that you should probably use the Length function.

Cheers,

Scott

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.