I will try a higher float value. That makes sense since I was using
six figures. Thanks.
On 9 Nov, 07:52, Andy Kemp <
a...@1kemp.co.uk> wrote:
> I had a little explore and the problem seems to be that Float6 displays the
> answer to something like 6 significant figures although not quite...
>
> If the answer includes a decimal part this is often rounded or ignored in
> the displayed answer:
>
> if you do the following calculations you can see more clearly what is
> happening:
> 123456789-0 = 123456789
> 1.23456789-0 = 1.234567 (dropped the 89)
> 123456.789 - 0 = 123457
>
> What I suspect happened for you is something like:
> 123456.78-111111 = 12345.8
>
> Which will have rounded the display - The correct answer is always stored
> however - press up and enter and the full result will be copied down on the
> the display line... Alternatively pick a higher Float value i.e. float12 or
> try one of the fix values...
>
> It is a little inconsistent in that integer solutions are never rounded but
> anything else is rounded to 6 significant figures...
>
> Hope that helps a little
>
> Cheers
> Andy
>