Formatting a float to ###.## (two decimals) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T12:25:26Z http://stackoverflow.com/feeds/question/1080872 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1080872/formatting-a-float-to-two-decimals 2 Formatting a float to ###.## (two decimals) volvox 2009-07-03T21:19:04Z 2009-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#1080894 0 Answer by Adinochestva for Formatting a float to ###.## (two decimals) Adinochestva 2009-07-03T21:24:54Z 2009-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#1080896 6 Answer by Ralph Rickenbach for Formatting a float to ###.## (two decimals) Ralph Rickenbach 2009-07-03T21:25:14Z 2009-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#1081433 2 Answer by Argalatyr for Formatting a float to ###.## (two decimals) Argalatyr 2009-07-04T03:35:19Z 2009-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>