The error should give indication of what you need to do.
You have your field in a repeating group, yet on the form, you are placing the field by itself (not in a repeating group). Since it's not repeating in the view, it can only display one value (which in this case is the first value). To fix the issue, either make the group not repeating (probably not an option) or place the field in a repeating section/table in the view.
As a side note, since you want to store the calculated value, you definitely want text box and not expression box.

Signature
Greg Collins [Microsoft MVP]
Visit Brain Trove ( http://www.BrainTrove.com )
Visit InfoPathDev ( http://www.InfoPathDev.com )
KLaw - 19 Jul 2006 20:16 GMT
Thanks - it's always the obvious that I overlook!
> The error should give indication of what you need to do.
>
> You have your field in a repeating group, yet on the form, you are placing the field by itself (not in a repeating group). Since it's not repeating in the view, it can only display one value (which in this case is the first value). To fix the issue, either make the group not repeating (probably not an option) or place the field in a repeating section/table in the view.
>
> As a side note, since you want to store the calculated value, you definitely want text box and not expression box.