numbers required to be input 0.xxx are defaulting to whole digits.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have to input numbers as either 1 or 0.xxx into a form and no matter what I
select as the properties, this is changing after update.

Can anyone assist?
 
You must enter these values as either "1", with no significant digits after
the decimal, or as decimal values with three significant digits? In other
words, valid values are between 0 and 1, correct?


George
 
I have to input numbers as either 1 or 0.xxx into a form and no matter what I
select as the properties, this is changing after update.

Can anyone assist?

Changeing to what?

i suspect that the Field's datatype is Number... Field Size Integer or
Long Integer.
By definition, an Integer is a whole number, therefor it cannot be a
decimal value.

Change the field's datatype to Single, Double, or Currency (which can
have up to 4 decimals).
 
By definition, an Integer is a whole number, therefor it cannot be a decimal value.

Change the field's datatype to Single, Double, or Currency (which can
have up to 4 decimals).

Or the aptly named DECMIAL type (which can have a decimal scale of up
to 27, assuming the OP's values are between 0 and 1 inclusive).

Jamie.

--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top