Formatting a float to ###.## (two decimals) - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T12:25:26Zhttp://stackoverflow.com/feeds/question/1080872http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080872/formatting-a-float-to-two-decimals2Formatting a float to ###.## (two decimals) volvox2009-07-03T21:19:04Z2009-07-04T05:19:48Z
<p>Having :</p>
<pre><code>var
Difference: DWORD // difference shows in milliseconds
// List.Items.Count can be any 0 to ########
[...]
sb.panels[2].Text := FloatToStr((((List.Items.Count) / difference) / 1000));
</code></pre>
<p>I want to format the resulting text to any ###.## (two decimals). Using FloatToStrF is no success (does'nt seem to work with DWORD). </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1080872/formatting-a-float-to-two-decimals/1080894#10808940Answer by Adinochestva for Formatting a float to ###.## (two decimals) Adinochestva2009-07-03T21:24:54Z2009-07-03T21:24:54Z<p>see <a href="http://www.delphibasics.co.uk/RTL.asp?Name=FormatFloat" rel="nofollow">this</a> link</p>
http://stackoverflow.com/questions/1080872/formatting-a-float-to-two-decimals/1080896#10808966Answer by Ralph Rickenbach for Formatting a float to ###.## (two decimals) Ralph Rickenbach2009-07-03T21:25:14Z2009-07-03T21:30:15Z<p>Why don't you use format function with <a href="http://www.delphitutorials.de/format-strings-zeichenketten-formatieren.html" rel="nofollow">format strings</a>? Example: </p>
<pre><code>sb.panels[2].Text := Format('%8.2f',[123.456]);
</code></pre>
<p>Other functions would be </p>
<pre><code>function FormatFloat(const Format: string; Value: Extended): string; overload;
function FormatFloat(const Format: string; Value: Extended; const FormatSettings: TFormatSettings): string; overload;
</code></pre>
http://stackoverflow.com/questions/1080872/formatting-a-float-to-two-decimals/1081433#10814332Answer by Argalatyr for Formatting a float to ###.## (two decimals) Argalatyr2009-07-04T03:35:19Z2009-07-04T05:19:48Z<p>Just wondering if this is a problem with math rather than formatting. Why are you dividing the number of items by 1000? Do you mean to divide milliseconds (your Difference variable) by 1000? Maybe this is what you want:</p>
<pre><code>EventRate := (List.Items.Count) / (difference / 1000); // events per second; to make it per minute, need to change 1000 to 60000
</code></pre>
<p>Of course, you'll still want to format the result. You'll need this as a variable or class property:</p>
<pre><code>MyFormatSettings: tformatsettings;
</code></pre>
<p>then, you'll need to do this once, e.g. in FormShow:</p>
<pre><code>getlocaleformatsettings(locale_system_default, MyFormatSettings);
</code></pre>
<p>finally, this should work:</p>
<pre><code>sb.panels[2].Text := format('%5.2f', EventRate, MyFormatSettings);
</code></pre>