Calculations on a form - Part II

T

TRob

I have read Sharon's previous question and responses for
question of the same subject and have attempted the
suggestions. However, I'm still having a similar
problem.

I am attempting to multiply three fields, the fourth field
will be the result. All four fields are formatted
numeric. The formula in the fourth field is
=([Width]*[Height]*[Length])

I have also tried:
=[Width]*[Height]*[Length]

and, per John Vinson's suggestion on this site:
=Val([Width]) * Val([Height]) * Val([Length])

Nothing works. The same value is returned each
time....3,973,920.00. The correct value should be 4896.

The strange thing is, the W*H*L formula works in a regular
query. It does not work on a form, nor on a report.

Any other suggestions?
 
G

Gary Miller

Not sure why you aren't getting the correct result, but if
this is something that you will be calculating often both in
forms and reports and it is working in a query, I would
consider building a simple query to use as the basis for
these and add the formula as a calculated field that you can
just drop on the forms and reports. Will save you work in
the long run....

Area:[Width]*[Height]*[Length]

Gary Miller
Sisters, OR
 

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