Sum of multiple numbers from query

K

Kim T

I've got 3 fields that the user will put the numbers in I want to get a total
of all 3 fields.
field names:
ReExp
AvoidNumb
AutoArousal

total field: TotalPSS-SR
need help how do I make the query work?
Kim
 
M

mray29

Add an additional field to your query:
[TotalPSS-SR] = [ReExp] + [AvoidNumb] + [AutoArousal]
 
Top