How to sum values in text box with a formula?

  • Thread starter Thread starter tom
  • Start date Start date
T

tom

I am using the formula

=sum(NameOfTextBox)

This is coming back asking for the name.

NameOfTextBox has a formula in it.
 
Where are you trying to do this: a form or report header or in the detail?

Sometimes Access gets confused if the text box and its control have the same
name. Try changing the name of the text box to

txtNameOfTextBox

and the sum to

=sum(txtNameOfTextBox)
 
I am trying to sum the values in the detail(the detail has a formula) on a
form. All the names are different.

The textbox with the sum function is in the footer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top