Last week, I got an email from one of my subscribers with a question.
Hey Puneet, how many methods we have to convert a negative number into a positive one?
You know, the thing for which he asked is a common kind of tasks.
I am sure, this often happens with you, when you get some numeric values which are in negative, and after that, you convert them into positive.
There is no #rocketscience in this. But have you ever checked how my different methods you have to do this?
Well, I am always curious to know about different methods to do a task in Excel.
So this time I grabbed a paper and listed all the methods which I can use to convert a negative number into positive.
And you will be amazed that I have got 7 different ways which you can use to deal with negative numbers.
So today in this post, I’d like to share all those methods with you...
...let's get started.
Top 7 Methods to Change Negative Number into Positive
1. Multiply with Minus One to Convert a Positive Number
Unlike me, if you are good at maths, I am sure you know that when you multiply two minus signs with each other, the result is always positive.
So you can use the same method in excel to convert a negative number into positive.
All you have to do just multiply a negative value with -1 and it will return the positive number instead of negative.
=negative_value*-1
Below you have a range of cells with negative numbers.
So to convert them into positive you just need to enter the formula in cell B2 and drag it up to the last cell.
Note: If you have mixed numbers (both positive and negative) then you can use the below method instead.
=IF(A1<0,A1*-1,A1)
2. Convert to an Absolute Number with ABS Function
Turning a negative number into positive is quite easy with ABS. This function is specifically for this task.
Quick Intro:
It can convert any number into an absolute number. In simple words, it will return a number after removing its sign.
Syntax:
ABS(number)
You just have to refer a negative number into the function and it will turn it into a positive value.
- In the below example, you have negative values from range A2:A11.
- Enter =ABS(A2) into B2 and drag it up to the last cell.
Note: This function works even when you have mixed numbers (both positive and negative).
Let’s think about a different situation where instead of getting positive numbers in a different column you need them in the same column.
And for this, you can use paste special option. Wondering how? Let me tell you.
In paste special option, there are “operation” options which you can use to perform some simple calculations.
You can use these same options to make negative numbers positive without using any formula or adding any extra column.
Just follow these steps.
- First of all, in any cell in your worksheet, enter -1.
- After that, copy it.
- Now, select the range of cells in which you have negative numbers.
- Right Click -> Paste Special -> Operations -> Multiply.
- In the end, click OK.
Now, all the negative number are converted into positive.
The only thing you need to take care is that this is not a dynamic method. So, you need to do it again and again if you frequently update your data.
But this method is quick and easy to use, and you don’t need any formula.
4. Remove Negative Sign with Flash Fill
I am sure you have used flash fill once in your lifetime and if not, you must use it, it’s a game changer.
This is an insane method to turn negative numbers into positive, here are the steps.
- First of all, in cell B2, enter the positive number for the negative number you have in cell A2.
- After that, come to cell B3 and press shortcut key Ctrl + E.
- At this point, in B column, you have all the numbers in the positive form.
- Now, click on the small icon you have on the right side of column B and select “Accept Suggestions”.
Congratulations, you have converted all the negative numbers into positive with flash fill.
Note: This method is also not a dynamic one, but quick and easy to use.
5. Apply Custom Formatting to Show as Positive Numbers
This is also a possibility that instead of converting a negative number you just want to show it as a positive number. And in this situation, you can use custom formatting.
Here are the steps to this.
- First of all, select the range of the cells you need to convert into positive numbers.
- After that, press shortcut key Ctrl + 1. It will open the custom formatting options.
- Now, go to “Custom” and in type input bar, enter “#,###;#,###”.
- In the end, click OK.
This will show all the negative numbers as positive. But, in actual these all are still a negative number, just formatting is changed.
If you select a cell and look at the formula bar, you can check, it’s still a negative number. So, when you use it in further calculation it will act as a negative number.
6. Run a VBA Code to Convert to Positive Numbers
If you are a VBA lover then you can use a simple code to reverse the sign of negative numbers instantly.
Sub numberP2N() Dim myCell As Range For Each myCell In Selection If myCell.Value <> "" Then If IsNumeric(myCell.Value) Then myCell.Value = Abs(myCell.Value) End If End If Next myCell End Sub
To use this code, you just need to select the range of negative number and run this macro.
First, it will check each cell of selection if there is a numeric value in it or not and then convert it to a positive value.
We have used VBA ABS function in this code.
Note: Once you run this code you can’t undo your action.
7. Use Power Query to Convert Get Positive Numbers
Yes, you can use power query to convert a negative number into a positive number and the best part is it’s a one-time setup.
Just follow these simple steps.
- First of all, select any of the cells from the data range where you have negative numbers.
- After that, go to Data tab ➜ From Table.
- It will convert the range into a table and load it in power query editor.
- Now, right click on the column, go to Transform ➜ Absolute Value.
- In the end, in power query editor, go to Home Tab ➜ Close ➜ Close and load.
Related: Power Query Tutorial
Conclusion
As I said, to turn a negative number into a positive number you don't need to use rocket science.
Even one method can be sufficient, but I have listed all these methods to help you to handle different situations.
I am sure you found all these methods helpful, but now, you have to tell me one thing.
Do you know any other method for this?
Please share your views with me in the comment section. I'd love to hear from you and please don’t forget to share it with your friends, I am sure they will appreciate it.
More Tips
- How to Highlight Blank Cells in Excel
- How to Create a Serial Number Column in Excel
- How to Add Bullet Points in Excel
- How to Add a Check Mark in Excel
- How to Combine a Multiple Cells into One Cell in Excel
- How to Convert a Formula to Value in Excel
- How to Insert DEGREE Symbol in Excel
- How to Insert Delta Symbol in Excel
- Excel Fill Justify
- How to use Format Painter in Excel
- How to Select Non-Contiguous Cells in Excel
- How to Apply Strikethrough in a Cell in Excel
- Formula Bar in Excel
About the Author
Puneet is using Excel since his college days. He helped thousands of people to understand the power of the spreadsheets and learn Microsoft Excel. You can find him online, tweeting about Excel, on a running track, or sometimes hiking up a mountain.
A simple “Desi Upchaar” is here,
Go to Find and Replace and type “-” in find,
then replace with none. Now, “-” sign is
removed from negative numbers.
This is a static method, not dynamic.
Nitin Shukla.
This is very useful and thank you
Thanks Puneet,
Informative
using power query to get positive numbers is a very good option when you need absolute values for analysis. Thanks for the help
Congratulations and thanks.
There is an 8th method with Paste Special
A very simple method that I used often, hope you like it ,
you can use “find & replace” option . you can find “-” & replace it with a blank ( like ” ” )
That’s so nice of you. Thank you so much. 🙂
Thanks Puneet.
How i can convert the only negative numbers. And posative must be zero Like this example.
A. B.
-2. 2
33. 0
Use VBA or an conditional formula.
if(A1>0, “0”, Abs(A1)
Where A1 is the cell containing Question Value
Thank you, Puneet.
Great methods.
However, some of the techniques might not work as expected when you have mixed negative and positive numbers.
Yes, #1 and #3 will not work.
Thanks Puneet !!
I’m so glad you found it useful.