In accounting I sometimes download statements where although the transaction represents debit, the sign is negative.

I then need to change the sign to be positive so it's actually indicating a true debit/withdrawal from the account.

How can I easily do this to a range of numbers in Excel?

2 Answers

Excel lets you apply a multiplication against a range of numbers via the Paste Special function.

To reverse the sign, this is equivalent to a multiplication by -1. Therefore:

  1. Enter -1 into any free field
  2. highlight it and copy
  3. Select the range you want to change the sign of
  4. Right click, point to paste special and choose Paste Special
  5. In the new dialog Paste All and apply Operation Multiplication
  6. OK - all numbers have their sign changed.
2

this is what the formula looks like =(SUM(J120:J202))*-1 replace the cells with yours in your spreadsheet

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy