Skip to main content
Nintex Community Menu Bar
Solved

Do not drop trailing zeros

  • July 11, 2024
  • 2 replies
  • 34 views

Forum|alt.badge.img+14

Converting number to text dropping training zeros

Description: I have a number 28.0692641000000 that I am trying to convert to text in a formula field.

My formula is:

Text(28.0692641000000)

It returns 28.0692641

I want it to return 28.0692641000000

Can this be done in Skuid or SF?

Best answer by bill.fox2

Had to do this in apex

2 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • July 12, 2024
  1. There is no "text" function in Skuid.

    Trailing decimal places that are zeros are really not anything and are not stored in math operations.

    You will have to put together a pretty complicated operation that does the following.

    Find the number of decimal places where there are values (in the example above it is 7)

In a "JoinText" function append the base number with the number of zeros you found in step 1.

I"m not sure this can even be done in a Formula - feels like a custom code solution to me.


Forum|alt.badge.img+14
  • Author
  • Answer
  • July 12, 2024

Had to do this in apex