Incorrect number renderer precision with scientific notation

Incorrect number renderer precision with scientific notation

Seb33300Seb33300 Posts: 9Questions: 3Answers: 0
edited October 2025 in Free community support

Description of problem:

If I define a column to be formatted with a precision of 2, I am expecting the precision to be the number of digits after the decimal (applied to the float number).

Examples:

Expected (precision 2):
123.456789 => 123.46
0.0000123456789 => 0.00

Current result (precision 2):
123.456789 => 123.46 (OK)
0.0000123456789 => 1.23 x 10-5 (WRONG = precision fixed after the 1 instead of decimal)

Expected (precision 7):
123.456789 => 123.4567890
0.0000123456789 => 0.0000123 => 1.23 x 10-5

Current result (precision 7):
123.456789 => 123.4567890 (OK)
0.0000123456789 => 1.2345678 x 10-5 (WRONG)

Replies

Sign In or Register to comment.