Sub playing()
With Cells
.Interior.ColorIndex = xlNone
.ColumnWidth = 0.75
.RowHeight = 6
End With
ActiveWindow.Zoom = 85
ActiveWindow.Zoom = 70
rght = 1
dwn = 1
lft = 2
up = 2
Range("da70").Select
Selection.Interior.ColorIndex = 1
rghttest = 0
dwntest = 0
lfttest = 0
uptest = 0
Do Until rght > 100
Do Until rghttest = rght
rghttest = rghttest + 1
Selection.Offset(0, 1).Select
Selection.Interior.ColorIndex = Int((55 - 1 + 1) * Rnd + 1)
Loop
rght = rght + 2
rghttest = 0
Do Until dwntest = dwn
dwntest = dwntest + 1
Selection.Offset(1, 0).Select
Selection.Interior.ColorIndex = Int((55 - 1 + 1) * Rnd + 1)
Loop
dwntest = 0
dwn = dwn + 2
Do Until lfttest = lft
lfttest = lfttest + 1
Selection.Offset(0, -1).Select
Selection.Interior.ColorIndex = Int((55 - 1 + 1) * Rnd + 1)
Loop
lfttest = 0
lft = lft + 2
Do Until uptest = up
uptest = uptest + 1
Selection.Offset(-1, 0).Select
Selection.Interior.ColorIndex = Int((55 - 1 + 1) * Rnd + 1)
Loop
uptest = 0
up = up + 2
Loop
Selection.Interior.ColorIndex = 0
End Sub