how do i total negative and positive numbers in the same column to

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to add a colmn of positive and negstive numbers to get the net
result. the Report is summing all cells as if they are all positive numbers
 
The only way that should be happening is if you're applying the Abs function
to the values (to convert them all to positive numbers), or if the numbers
are stored as positive numbers, with a second column indicating which are
positive and which are negative.

Is your case either of those two scenarios?
 
Summation in the normal way should give you precisely that. Put a text box
control in a group or report footer with a ControlSource of:

=Sum([NameOfField])

Ken Sheridan
Stafford, England
 
RIC said:
I am trying to add a colmn of positive and negstive numbers to get
the net result. the Report is summing all cells as if they are all
positive numbers

I had to read your message three times to be sure what you wanted. If I
am right and the period after the word "result" was meant to be a comma and
you intended not to capitalize the first letter of the next word, then Al
wrote the correct answer. You want to use the Abs function as he indicated.
It will work as you want.
 

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