0

Is there an Excel arithmetic function that flips a sign? Such a function would be used in lieu of the zero minus in the following...

=IF(G5<0,ROUND(0-G5,2),"")
H2ONaCl
  • 1,458
  • 4
  • 22
  • 36

1 Answers1

1

The formula =-A1 would give you the negated value of cell A1.

BigMikeL
  • 113