Sub DoTheLot() 'Borders
Dim R As Long 'R represents ROWS,
Dim R_From As Long
Dim R_To As Long
Dim LastCol As Long
Dim myarray(), xItem
R_From = 37
With ActiveSheet
R_To = .Cells(.Rows.Count, "J").End(xlUp).Row
For R = R_From To R_To
LastCol = .Cells(R, .Columns.Count).End(xlToLeft).Column
Select Case Cells(R, "J").Value
Case "Out of Order"
.Cells(R, "A").Resize(, LastCol).Font.ColorIndex = 3 'Red
myarray = Array(xlEdgeLeft, xlEdgeTop, xlEdgeBottom, xlEdgeRight)
With Selection
For Each xItem In myarray
With .Borders(xItem)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
Next xItem
End With
End Select
Next R
End With
End Sub
Bookmarks