Form won't show decimal input

G

Guest

I've created an input form that places values into a table. My form rounds
off any decimal input to a whole number. How do I maintain the decimal input?

I've done the following:
My table field is formatted to General number with a decimal place of 2
My form field property matches my table field.

Thank in advance for your help. I know this is a simple issue, but I must be
brain dead!
 
R

Rick Brandt

dab1477 said:
I've created an input form that places values into a table. My form
rounds off any decimal input to a whole number. How do I maintain the
decimal input?

I've done the following:
My table field is formatted to General number with a decimal place of
2
My form field property matches my table field.

Thank in advance for your help. I know this is a simple issue, but I
must be brain dead!

What is the Field Size setting of your field? I'm guessing Integer or Long
Integer neither of which support decimals.
 
A

AlCamp

Dab,
You probably have designated this field's DataType as a Byte, Integer, or
Long Integer in your table design. Those are "whole number" Types, and
don't allow for decimals... regardless of what your Format is.
Try Single or Double...
hth
Al Camp
 

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

Top