How do I do percentages in access

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

Guest

I am working with trying to get conversions. Example I need to get the
percentage of the number of tours divide by the number of leads. I can't
seem to know how to create an expression that will do that. It has been
saying that I have entered an invaild syntax.
 
Do you have anything else you would like to share with us? Some information
about your tables and data might be really valuable.
 
make sure that you put the field name EXACTLY like it is in the database.
Here is an example of a division

=([Field name])/#(you are wanting to divide by)


it should work easily
 
deturner91961 said:
make sure that you put the field name EXACTLY like it is in the database.
Here is an example of a division

=([Field name])/#(you are wanting to divide by)


it should work easily
The method above will give you a number. 25/100 = .25 You could
multiply .25*100 = 25, with is a percentage. I think though that
normally is is better to just let Access represent .25 as a percent. If
this calculation is done in a query, you can right click in the column
heading in design mode and select properties and then select Percent
from the drop-down list. You can also edit the field's properties on a
form and select Percent for the Format property.

See form image here: http://www.psci.net/gramelsp/temp/percent.png

All the values are calculated in a query and the fields formated as
Percent. So, 0.06620209 is display as 7% on the form.
 

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