View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Switching negative signs from back to front

Sub moveminustofront()
For Each c In Selection
If Right(c, 1) = "-" Then
c.Value = "-" & Left(c, Len(c) - 1)
End If
Next c
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"tracytracy123" wrote in message
...
Our system reports unfortunately have negative signs in back of numbers
instead of in front. When we export them to Excel, the negative numbers
seem
to be ignored in totals and we are manually moving the negative signs from
back to front to get our totals correct. Is there a way to do this
faster?