removing the "-" sign in a calucation

  • Thread starter Thread starter gma
  • Start date Start date
G

gma

when i doing a calucation, =.933 x 25% = .233 minus .933 i get a minus sign
in front of the result. how can i do the calucation and remove the "-" sign?
this is throwing all the other cells off.
 
Use Abs(number). This function returns the absolute value of the number.
 
i'm sorry i dont understand do i write the formula like this:
=(A1*25%)-A1? or something different?
 
Hi
You can use it both ways, as per sample.
=ABS(0.935*25%-0.935) or =ABS(A1*25%-A1)
HTH
John
 
Your operations return a negative number

How do the other cells get "thrown off"?

You can turn to positive by using ABS function but will that give you
correct results?



Gord Dibben MS Excel MVP
 
If you want to get positive value, you should enter =Abs((A1*25%)-A1)
Ex.: Abs(5)=5 and Abs(-5)=5
 

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