How do I enter Percents in Access?

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

Guest

A real simple database to track students and test scores and other misc data.
But no matter how many times I check the Database and form properties to
ensure decimals are set to zero, or two, I keep getting the wrong percent
show up on the form. ie: 69% shows up as 6900% when decimal is set to two;
and as 100% when decimal is set to zero or auto. I have tried entering .69;
69.00; .0069... all to no avail. any help would ease my passing!!! :-p
 
A real simple database to track students and test scores and other misc data.
But no matter how many times I check the Database and form properties to
ensure decimals are set to zero, or two, I keep getting the wrong percent
show up on the form. ie: 69% shows up as 6900% when decimal is set to two;
and as 100% when decimal is set to zero or auto. I have tried entering .69;
69.00; .0069... all to no avail. any help would ease my passing!!! :-p

Sounds like you are using the default Long Integer datatype for the field. An
Integer, by definition, is a whole number.

If you instead use a Single or Double Float number datatype, then 0.69 will
display as 69% (they are just two ways of depicting the same value). You can
enter this in a textbox by either typing .69 or by typing 69%; entering 69
will display as 6900.

John W. Vinson [MVP]
 

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

Similar Threads

Percent problems 4
Format a Percent 4
Format a percent 7
Formatting a percent field 1
Format a percent field 1
Format in Text Field Changes 6
Percent value rounds up in Access 1
percent problems 2

Back
Top