Ken,
yes, I did what you said above and that works... so then I try updating the column A list numbers, and when i do the numbers in column A go back to text..
this is the code which was given to me to bring numbers in from the prediction sheet when I click the Update List button:
Code:
Sub RowsOfNumbersToSingleColumn()
Dim Cell As Range, Joined() As String, Nums(1 To 60) As String
For Each Cell In Sheets("Predictions").Range("D12:R12,D14:R14,D16:R16,D18:R18,D20:R20,D32:M32,D33:K33,D34:I34,D36:M38,D37:K37,D38:I38")
If CLng(Cell.Value) > 0 And CLng(Cell.Value) <= 60 And Len(Cell.Value) > 0 Then Nums(CLng(Cell.Value)) = Format$(Cell.Value, "00")
Next
Joined = Split(Application.Trim(Join(Nums)))
With Sheets("Picks").Range("A1").Resize(UBound(Joined) + 1)
.NumberFormat = "@"
.Value = Application.Transpose(Joined)
End With
End Sub
I noticed the red text... and wondered if this could be the problem, since the problem was happening when I clicked the button.. I searched for "VBA .Numberformat" and learned that the @ means Text.. and that "0" is for number. So I changed the code to "00" vice "@" and tried it.. it seems to work.. Can you confirm this?
Dave