Given that you will probably not be editing or expanding the data in
Pro, David's suggestions are valid. Just note that if for some reason
you had any data that you define as Decimal 12,6 you WILL get true
truncation if you were to do some math or editing that expanded the
data to more than 6 decimals. Or more than the limit to the left of
the decimal point. So using Decimal can be nice but has some dangers
in it.
As Uffe pointed out, float has the true precision but the browser does
not show it. As far as exporting as ASCII or any other format, one can
always do a SQL select where the column list contains expressions like
val(format$(ColumnName, "###.#########")) and the result will be
numbers formatted up to those number of decimals. The resulting query
table can be exported to text. So you can, with a little extra work,
get the best of both full precision and formatting when you need it.
Eric Blasenheim
PBBI (MapInfo)
> > - Show quoted text -- Hide quoted text -