M
MICHALK
How to change a positive number to negative?
Jacob Skaria said:Try the below
--Enter -1 in a cell and copy the cell
--Keeping the copy; select the data range to be converted (say A1:A100).
--Press F5. From Goto window>Special> select 'Multiply' and hit OK
If this post helps click Yes
NonTechie said:Try these.
1. When entering the number, put a minus sign in front of it.
2. If your positivie number is in cell A1, enter =-a1 in, say cell b1.
3. If you have a group of mixed numbers (positive and negative), use an IF
statement in cell b1. E.g. =if(a1>=0,a1,-a1) and copy.
"MICHALK" wrote:
Jacob Skaria said:Pleaes note that this option will only work if you have only +ve numbers in
your selection....or else you will have to use a helper column with a
formula..
Pete_UK said:Try this:
=MIN(A1,-A1)
This will keep negative numbers and turn positive numbers to negative.
Hope this helps.
Pete
.
Thanks, but was wanting something faster....want values only.
Jacob Skaria said:Michal, Are you sure you entered -1 to a cell and copied the cell and
***selected *** the +ve numbers to be converted and did the paste
special...It works even if the number cells are formatted to text..