Hello Community,
I'm creating a label showing a formatted number, big or small, integer or decimal.
For example, this field should show numbers like this:
100
10,000
100,000.25
So I used Text() formula:
Text(Number_Value, "#,#.##")
but I noticed that in this way the integers will get an unnecessary dot behind them,
like this:
Removing ".##" did not work, because it was removing the decimal places and automatically rounding the value.
Again, I need to format the numbers like this.
100
10,000
100,000.25
I do not want an integer to have a decimal dot behind it. But I still need a thousand separators.
How can I achieve this?