can infopath forms calculate totals

B

Bill Koch/SLO

I have a form that contains a number of text boxes that are numerical I want
to include a text box that is a total and automatically computes the total
amount from those entries a form user imputs to the form. How can I do this?
 
A

Adam Harding

Bill Koch/SLO said:
I have a form that contains a number of text boxes that are numerical I want
to include a text box that is a total and automatically computes the total
amount from those entries a form user imputs to the form. How can I do this?
 
A

Alex [MSFT]

Adam,

Double-click on the text box where you want to have the total to bring up
the Properties dialog; click on the f(x) button near Default Values. In the
expression builder, insert fields that are bound to text boxes that you want
to use in your calculation. Use the + sign to perform the summation, not the
SUM() function.

For example, you will have field1 + field2 + field3.

Good luck,
Alex @ Microsoft
 
Top