Sorting Problems (Help)

C

Cournoyer

I have a simple spreadsheet that was emailed to me, and I needed to sort one
of the columns (6 digit number), and all but 6 records sort. I have tried
to highlight the entire column, and format it to numbers, text (It was
General), I even tried to retype the six fields, but they still won't sort
numerically. What's up with this BG (Bill Gates) silly program? I am
missing something simple?

Rich
 
D

Don Guillett

try
Sub ConvertThem() 'Harald Staff
Dim C As Range
For Each C In Intersect(Selection, _
ActiveSheet.UsedRange)
If Not C.HasFormula Then
If IsNumeric(C.Value) Then
C.Value = C.Value * 1
End If
End If
Next
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Sorting Numbers 2
Excel Sorting 4
sorting sequentially 4
Sorting in multiple worksheets 1
Unwanted Number Sorting Order 2
Sorting number in multiple rows 4
Sorting negative numbers? 3
Sorting List of Numbers 4

Top