View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
steve1961 steve1961 is offline
external usenet poster
 
Posts: 2
Default excel macro to move minus sign

I am importing numbers that has the minus sign to the right of the number. I
need a macro that can move the minus sign to the left of the number. I used
to have one but must have copied in incorrectly. What I has so far is..
Sub move_minus_left()
Dim currentcell As Object
For Each currentcell In Selection
If Right (currentcell.Value, 1)="-" Then
currentcell.formula="-"&left.

I really really need help with this as soon as possible. Thank you Very Much!