On 2/4/07, Fuad Efendi <[EMAIL PROTECTED]> wrote:
Hello,http://www.tokenizer.org shows price (in CAD$) 1.2E7 instead of 11999999.99 (that is real!) I use "sfloat" for a price field...
An IEEE float only has 24 mantissa bits (7 decimal digits) of precision. 24*log(2)/log(10) = 7.22 Try an sdouble if you need exact prices that large. -Yonik