This is how I would do it. Just for demonstration, I put the data in a different column than I took it from. And, I delete the columns I write to, so be careful. Save a back up copy before testing (always a good idea).
Sub randomizeSheet1()
Dim ws As Worksheet
Dim allData() As String
Dim tempData As String
Dim xChangeWith As Long
Randomize
Set ws = Sheet1
ws.Columns("F:J").Delete
'determine last Row on sheet1
lastRow = ws.Cells(ws.Rows.Count, 1).End(xlUp).Row
ReDim allData(lastRow, 4)
'read in the data
For i = 15 To lastRow
For j = 1 To 4
allData(i, j) = ws.Cells(i, j)
Next j
Next i
'randomize the data (shuffle the deck)
For i = 15 To lastRow
xChangeWith = Int(((lastRow - 15) * Rnd) + 15) ' Generate random value between 15 and LastRow
ws.Cells(i, 6) = xChangeWith
For j = 1 To 4
tempData = allData(xChangeWith, j)
allData(xChangeWith, j) = allData(i, j)
allData(i, j) = tempData
Next j
Next i
'write the shuffled data
For i = 15 To lastRow
For j = 1 To 4
ws.Cells(i, j + 6) = allData(i, j)
Next j
Next i
End Sub
Bookmarks