Thread: Sorting error
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Daminc
 
Posts: n/a
Default Sorting error


I found this:


Code:
--------------------
Sub ConvertToNumbers()
Cells.SpecialCells(xlCellTypeLastCell) _
.Offset(1, 1).Copy
Selection.PasteSpecial Paste:=xlPasteValues, _
Operation:=xlPasteSpecialOperationAdd
With Selection
.VerticalAlignment = xlTop
.WrapText = False
End With
Selection.EntireColumn.AutoFit
End Sub
--------------------


which seems like it clears it up but I don't know why.

Any advice?


--
Daminc
------------------------------------------------------------------------
Daminc's Profile: http://www.excelforum.com/member.php...o&userid=27074
View this thread: http://www.excelforum.com/showthread...hreadid=530501