=LEFT(D2,LEN(D2)-1)*-1 Moving Negative to Left side of Column

Trisha Baker

New Member
Joined
Mar 23, 2011
Messages
2
I have a report that was downloaded from PFW to excel, but the negative $ amounts are on the right side ie., -157.10 is downloaded in excel as 157.10-. When I use the formula =LEFT(D2,LEN(D2)-1)*-1 as per the help field in excel, it turns the 0.00 amounts to #VALUE! and the positive number to negative numbers. I would like to just formatt the column instead of adding a column with this formula as well. Any ideas?

Thanks - Trish
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Welcome to the board...

Well, formatting the cell is going to do no good (even if it were possible).
Even if you could format it to move the - to the left, the value in the cell will remain unchanged...not a real number in excel.

Try

=IF(RIGHT(D2)="-",-LEFT(D2,LEN(D2)-1),D2)
 
Upvote 0
Select the data, Data > Text to Columns, click Next twice, tick Advanced, check Traiing Minus for Negative Numbers then click Finish.
 
Upvote 0

Forum statistics

Threads
1,214,810
Messages
6,121,690
Members
449,048
Latest member
81jamesacct

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top