Playa said:
I have an unbound textbox for each record with number values in them at the
end of my report I want to add all the values up. How would I do that?
If the number values are calculated from fields in the
report's record source table/query, e.g.
=[Price] * [Quantity]
then just use the same expression in a report footer text
box, e.g.
=Sum([Price] * [Quantity])
If you have to use code to calculate the number values, then
add an invisible text box named txtRunValue to the detail
section, Set its control source to =unboundtextboxname and
its RunningSum property to Over All. The report footer text
box can then display the sum by using the expression
=txtRunValue