When you convert an integer held by a variable to a string with STR$() it uses exponents to simplify the number if it's too large. Here's an example in direct mode:
A=1000000 OK ?STR$(A) 1e+06 OK ?STR$(1000000) 1000000 OKHow can I avoid the exponents while still using variables? Or, at the least, what is a function I can define that also works with decimals?