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

When my field, PRICE_1 appears in the text of one of my letters, the currency formatting is not picked up in all records. I have several records where the dollar sign and .00 are not appearing. Most records (text in the letters) are fine.

Thanks always for your help. Maxwell Morlay

Hi Maxwell,

As you might suspect, this is not a problem that is unique to you. In fact, it has been discussed numerous times on the Forum.

You will need to convert your number to Text in order to use it.

There are several calculations that will do this, but none of them are 100% accurate because they can be affected by the variables in numbers. (i.e. Positive, negative, number of places in the raw number, etc.) This calculation was submitted by Russ Baker a while back and will work as long as the rounding doesn't need to increase the dollars. (i.e. 1.999 will end up 1.00, in stead of 2.00)

If(RawNumber<0,"-","") &

"$" &

If(Length(NumToText(Int(Abs(RawNumber))))>12,Left(NumToText(Int(Abs(RawNumber))), Length(NumToText(Int(Abs(RawNumber))))-12)&",","") &

If(Length(NumToText(Int(Abs(RawNumber))))>9,Left(Right(NumToText(Int(Abs(RawNumber))),12), Length(Right(NumToText(Int(Abs(RawNumber))),12))-9)&",","") &

If(Length(NumToText(Int(Abs(RawNumber))))>6,Left(Right(NumToText(Int(Abs(RawNumber))),9), Length(Right(NumToText(Int(Abs(RawNumber))),9))-6)&",","") &

If(Length(NumToText(Int(Abs(RawNumber))))>3,Left(Right(NumToText(Int(Abs(RawNumber))),6), Length(Right(NumToText(Int(Abs(RawNumber))),6))-3)&",","") &

If(Length(NumToText(Int(Abs(RawNumber))))>0,Left(Right(NumToText(Int(Abs(RawNumber))),3), Length(Right(NumToText(Int(Abs(RawNumber))),3))-0),"") &

"." &

Right("00"&NumToText(Round((100*(Abs(RawNumber) - Int(Abs(RawNumber)))),0)),2)

The best way to accomplish this, and be 100% accurate in your output, is to create a separate layout (call it CopyLayout), and put one filed on it, and that would be a copy of your Raw Number, but format it in dollars the way you want it. Then create a script that goes to that layout, copies the formatted number, and then paste that into a text field to be used in your output.

Freeze Window

Go to Layout [

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.