calculated columns in a datasheet

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

Guest

Good day all

I have a datasheet that I input records to. The fields (numeric) are
"removed" "return" "variance" I just want to be able to type into the
"removed" and "returns" and have the "variance" automatically give me the
difference. What do I have to do my datasheet (not a form).

Ex. 2 3 = 5
4 -1 = 3

thanks
 
Access won't work like Excel. You are using Access aren't
you?

Access being a relational database you don't store the
results of calculations, you just recalc them each time you
need them.

To calculate the result you use a query.
 
bladelock said:
Good day all

I have a datasheet that I input records to. The fields (numeric) are
"removed" "return" "variance" I just want to be able to type into the
"removed" and "returns" and have the "variance" automatically give me the
difference. What do I have to do my datasheet (not a form).

Ex. 2 3 = 5
4 -1 = 3

thanks

For computed values, you don't store them in fields of a table, you
compute them as needed.

They can be computed In a query, a form or a report.
 

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