I would like to do calculations in a form field

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

Guest

I would like to program a field in a form so that if I need to do a
calculation like adding two or three dollar amounts and the total will
appear in the field. Just like in Excel
 
I would like to program a field in a form so that if I need to do a
calculation like adding two or three dollar amounts and the total will
appear in the field. Just like in Excel

Add an unbound control to your form.
Set it's Control Source to:
=[FieldA] + [FieldB] + [FieldC]

The result will appear in the control. It will not, nor need it be, be
saved in any table.
 

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