Share via

Converting minus figures to positive

Anonymous
2021-05-12T14:20:53+00:00

Hi all

I have a column of figures where some are positive and some are negative.

Is there a quick way of converting them all to positive?  I have thought of creating a custom number format that would format the negative numbers to appear without the minus sign.  Does anybody have any other ideas?

thank you.

Louise

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

7 answers

Sort by: Most helpful
  1. Anonymous
    2021-05-12T14:36:41+00:00

    Formatting does not change the underlying value.

    Select your values and use Ctrl-H  (Find and Replace)  Find   -  (the negative sign) and replace it with nothing.

    Was this answer helpful?

    100+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2021-05-12T14:57:45+00:00

    Hi

    My name is André. I am an independent consultant.

    >You can use an ABSOLUTE function.

    = ABS ()

    See a cell to prove a formula result, you can insert the code before

    Ex.

    = abs (sum (A1 + A2)

    if the main statistical values ​​can do as defined in the print.

    I hope this information is useful for you. If you still have questions, answer here so I can continue helping you.

    André.

    Was this answer helpful?

    70+ people found this answer helpful.
    0 comments No comments
  3. LemP 74,945 Reputation points Volunteer Moderator
    2021-05-12T16:14:42+00:00

    As someone who is not an expert in Excel, I would do it in this more or less brute force manner.

    Starting with a column of numbers some of which are negative, use the ABS() formula for the first cell in an adjacent column:

    Drag the handle at the lower right corner of the top cell in the second column to propagate the formula to all of the cells:

    Select all the cells in the second column and right-click > Copy:

    Select all the cells in the original (first) column, right-click and select "Paste Values": (the icon with "123"):

    Delete the second column.

    Was this answer helpful?

    20+ people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2021-05-12T16:45:39+00:00

    You can use the format #.0;#.0 to show both positive and negative numbers as positive; but note that formatting does not change the true value of the numbers. For example if formatting displays -2 as 2, Excel still sees the value as -2. However, if you want to convert negative numbers using formula, then use ABS function in your formula. For example ABS(A2) will change -2 to 2, where cell "A2" contains -2

    Was this answer helpful?

    10 people found this answer helpful.
    0 comments No comments
  5. DaveM121 (2) 14,210 Reputation points Volunteer Moderator
    2021-05-12T15:01:02+00:00

    Hi Louise

    If that column of figures is generated by  formula, then, wrap the original formula in ABS, that will always produce a positive value

    =ABS(your formula)

    Was this answer helpful?

    8 people found this answer helpful.
    0 comments No comments