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

I have this calculation to leave out the decimal separator:

Left(Amount,2) & Right(Amount,2)

When the user enters 20.34, the result is 2034. It works perfectly. The calculation won't work if the user enters 120.34 though. The result will be 1234 instead of having 12034. I cannot use Left(Amount,3) because it will not leave out the decimal separator when the user enter 20.34

Any idea?

Bikeman17

  • Author

Hi

After writing down my problem, I found the solution. I might be the first user to reply to his own post. So here is the solution to my problem.

Create another calculation field with a logical function:

Case(Length(Amount) = 5,Left(Amount,2) & Right(Amount,2), Length(Amount) = 6, Left(Amount,3) & Right(Amount,2))

Have a great night Bikeman17

- Bikeman 17

I think that you'll find

TextToNum(Substitute(NumToText(Number), ".", ""))

effective for any length of integer and decimal.

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.