Skip to main content
April 5, 2022
Question

Large numbers

  • April 5, 2022
  • 2 replies
  • 0 views

Hi, to print large numbers as it is with decimals. for ex: 12367864322345678965.0000008 output need to be same as this 12367864322345678965.0000008.How can I achieve this?

    2 replies

    harshitb6843
    April 5, 2022

    Hi there,

    I am not very clear with the question. However, there is a similar thread running on community - https://community.appian.com/discussions/f/data/24166/storing-exceptionally-large-or-small-numbers

    Does it helps you in any way?

    April 5, 2022

    Hi,

    If you store  this number into number(decimal) then it will display as 1.236786e+19 ( Exponential format) . Instead  convert into text  and go with fixed() function. It will return as it is.