calculations/functions

  • Thread starter Thread starter Cheryl
  • Start date Start date
C

Cheryl

Howdy, school teacher in need. How do I input a SUM
function to add up data in a record?
 
Do you want the total of various fields in a single record? If so, then just
use simple math:

CalculatedValue: Field1 + Field2 + Field3.......

However, if you want the total of a column then use the Sum() function:

Sum(Field1)
 
Thanks for your response but where do I put this command,
in the field where calculated amount should appear or do I
have to create a macro?
 
Back
Top