Decimal type limitation

Hello everyone. I’m trying to use a constant number in an expression, the number is 0.00000055. But I keep getting the error:

Constant value ‘5.5E-07’ is not in a valid format for column type 'Decimal’

Is this a limitation of the platform?

Thank you

Solved Solved
0 4 200
1 ACCEPTED SOLUTION

I tried this. Didn’t work.
The workaround was to write it as 5.5/10000000. It’s working now.

View solution in original post

4 REPLIES 4

Steve
Platinum 4
Platinum 4

You may need to make sure Decimal digits is set to allow the value (believe it or not):

I tried this. Didn’t work.
The workaround was to write it as 5.5/10000000. It’s working now.

I believe it might be a Decimal Float issue in the back-end, and your approach is correct. I was about to propose the same math.

Interesting, and unfortunate.

Top Labels in this Space