Calculation & to store a the result

  • Thread starter Thread starter Faio
  • Start date Start date
F

Faio

Can some help me?

I have a table

measurement (Number, Double and 4dp)
wharfage(Currency, 2dp)

I created a Form

Measurement field
WCharge (calculated field) where Measument * 15.5 and I need the answer to
be stored in Wharfage field.

How can I do that?
 
Faio said:
Can some help me?

I have a table

measurement (Number, Double and 4dp)
wharfage(Currency, 2dp)

I created a Form

Measurement field
WCharge (calculated field) where Measument * 15.5 and I need the answer to
be stored in Wharfage field.

How can I do that?

Generally speaking you do not store calculations unless you need historical
data. Do the calculation in the form's query:

Wharfage: [Measurement]*15.5

If you really must store it then post back for some options.

Keith.
www.keithwilby.com
 
Thanks alot.

Keith Wilby said:
Faio said:
Can some help me?

I have a table

measurement (Number, Double and 4dp)
wharfage(Currency, 2dp)

I created a Form

Measurement field
WCharge (calculated field) where Measument * 15.5 and I need the answer
to be stored in Wharfage field.

How can I do that?

Generally speaking you do not store calculations unless you need
historical data. Do the calculation in the form's query:

Wharfage: [Measurement]*15.5

If you really must store it then post back for some options.

Keith.
www.keithwilby.com
 

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