Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • 1000 separator

    How do I format a variable to read, for example, 10,000 instead on 10000?

  • #2
    if you look at "help format" you will see that adding a "c" to the end of the format command will do it
    Code:
    . di %7.0fc 10000
     10,000

    Comment

    Working...
    X