Is there a format string that can be passed to the VB6 Format function that will simply group digits? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T23:04:42Zhttp://stackoverflow.com/feeds/question/538368http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/538368/is-there-a-format-string-that-can-be-passed-to-the-vb6-format-function-that-will1Is there a format string that can be passed to the VB6 Format function that will simply group digits?raven2009-02-11T19:28:35Z2009-02-26T19:44:41Z
<p>Is there a format string (?) I can pass to the VB6 Format function that will perform digit grouping? I want to replace the question mark in this statement...</p>
<pre><code>Debug.Print Format(123456789, "?")
</code></pre>
<p>...with a string that will generate the following output:</p>
<pre><code>123,456,789
</code></pre>
<p>The predefined format string "Standard" comes close, but it tacks a decimal point and two 0's on the end:</p>
<pre><code>? Format(123456789, "Standard")
123,456,789.00
</code></pre>
http://stackoverflow.com/questions/538368/is-there-a-format-string-that-can-be-passed-to-the-vb6-format-function-that-will/538380#5383803Answer by raven for Is there a format string that can be passed to the VB6 Format function that will simply group digits?raven2009-02-11T19:30:42Z2009-02-26T19:44:41Z<p>As I was typing the question I took another glance at the documentation and spotted the answer, but I went ahead and posted it anyway. Here it is:</p>
<pre><code>Debug.Print Format(123456789, "#,##0")
</code></pre>