Don't know if this will really help, but you can give a standard value, say 1, to all your items, and multiply them by a random number between 0 and 1 using the rand() function, then sort on the results. The list should change every time you do a sort.
Hope it helps,
Igor
Steve,
Put your list of values in cells A1 thru Awhatever and then run this code.
Option Base 1Sub ReOrder()
Dim aryList() As Variant
Dim i As Long
Dim j As Long
Dim Temp As Variant
Dim LastRow As Long
LastRow = Cells(65536, 1).End(xlUp).Row
ReDim Preserve aryList(LastRow)
' Read in values in column A starting at A1
For i = 1 To LastRow
aryList(i) = Cells(i, 1).Value
Next i
' Swap random elements
For i = 1 To LastRow
Randomize
j = Int((LastRow - 1 + 1) * Rnd + 1)
Temp = aryList(i)
aryList(i) = aryList(j)
aryList(j) = Temp
Next i
' Print out the randomized list
For i = 1 To LastRow
Cells(i, 2).Value = aryList(i)
Next i
End Sub
Note that in this routine a value could get "swapped" with itself, but that is part of the "randomness." To not permit that would require putting in some additional checking.
enjoy