-
From my calculations I have a number with a bunch of zeroes which gets shown in scientific notation - is there any way to format it with digits only? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We currently lack some proper functionality for formatting Numbers. See also this ticket: #219 One workaround to do this right now is to format it as a string. For example:
You could even make a function out of this and add it to your
Then you do something like
That said, it's still just a workaround. We should support this natively. Please feel free to comment in the linked ticket if you have additional ideas or like to contribute in another way. |
Beta Was this translation helpful? Give feedback.
We currently lack some proper functionality for formatting Numbers. See also this ticket: #219
One workaround to do this right now is to format it as a string. For example:
You could even make a function out of this and add it to your
init.nbt
file:Then you do something like
That said, it's still just a workaround. We should support this natively. Please feel free to comment in the linked ticket if you have additional ideas or like to contribute in another way.