Absolute function

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

Guest

I am trying to add a row of number to total their absolute value. The actual
total may be 0, but if there are numbers in the row, I want to have a total
above 1. For example the row may have the following:

1 24 -24 -1

I do not want the total to be 0, but rather to be 50. Using ABS (sum(cell
range)) does not work. Any ideas?

Thanks
 
{=SUM(ABS(yourrange))}

Press Ctrl+Shift+Enter when you are done writing the formula without the
curly brackets--Excel puts those in for you.

tj
 
That does work as long as I exlude a column where I have a letter (denoting a
footnote reference - that gave me a #VALUE error. Thank you so much!
 
You need to filter the range for numbers...

=SUM(IF(ISNUMBER(Range),ABS(Range)))

which must be confirmed with control+shift+enter instead of just wit
enter.
That does work as long as I exlude a column where I have a lette
(denoting a
footnote reference - that gave me a #VALUE error. Thank you so much!

[...
 

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