Is there an easier way to separate thousands with comma?
In the code above, we would have to know beforehand how large the value to be printed is, and the code would fail to place all the commas if the value were larger.Uses "Console" PrintL format$(123456789.123,"###,###,###.###") WaitKey
We could use
to anticipate larger values, but I wonder if there is a more elegant solution.PrintL format$(123456789.123,"###,###,###,###,###,###,###,###.###")
Bookmarks