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.

Extract formatted number as text

Featured Replies

I have a number field formatted as a decimal with 2 fixed decimal digits. So if I type 100 into the field, it displays as 100.00

Is there a way to get the displayed value out of that field (100.00 as opposed to the actual field value of 100) to display in a text field? Or, do I have to monkey with the number by adding decimal digits (via a calc) if they weren't manually typed?

Right click on the field and go to Number Format, there should be opotions in there to do what your wanting.

Hi

try this calc:

Int ( number ) &

Case(

number * 100 - Int(number) * 100 = 0;".00";

number * 100 - Int(number) * 100 < 10;".0" &number * 100 - Int(number) * 100;

"." & number * 100 - Int(number) * 100

)

or, the same, but better to look:

Let([

i = Int ( number );

d = Right ( 100 + number * 100 - i * 100 ; 2 )

];

i & "." & d

)

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.