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

Hi Forum,

 

Please help me solve a calculation for this problem, i have a table with various records, i would like to implement a field called Order_Check that would display a "1" if the table field Order_Num begins with "PT00" if otherwise it must display "0". This field Order_Num for invoice records appear to be either empty, has value ID that begins with PT00* or just have some random values, i tried the calculation:

IF(Order_Number = "PT00*", 1, 0)

Thank you for assisting,

Miss-Amen!

Your test will only return 1 when the contents of the Order_Number field contains pt00*, PT00*, Pt00*, or pT00*.

Why did you put an asterisk in there?

Maybe this will get you a little closer to what you want.

If ( Left ( Order_Number ; 4 ) = "PT00" ; 1 ; 0 )

Edited by Kris M

13 minutes ago, Kris M said:

If ( Left ( Order_Number ; 4 ) = "PT00" ; 1 ; 0 )

Or shortly:

Left ( Order_Number ; 4 ) = "PT00"

 

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.