Create a Macro, it will convert <1,000.00> into -1,000.00
Sub Macro1()
' You must select the column before applaying the macro
Selection.Replace What:="<", Replacement:="-", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Selection.Replace What:=">", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
End Sub
Kelloggs