I'm doing some currency calculations and some numbers are big (eg: tens of thousands).
I tried adding a separator in different ways:
- a comma
- an underscore character (like in Javascript or Pyhton)
- a space
None of these worked and I either got an "unknown" result, or when underscore was used, it substituted the result from the previous calculation (which is a documented feature).
I'd like to suggest to allow commas in the numbers as a thousands separator, or spaces in order to make it easier to work with large numbers with lots of zeros.