For the first part maybe:
Sub feckoffcup()
Dim lr As Long
Dim rcell As Range
lr = Cells(Rows.Count, 1).End(xlUp).Row
For Each rcell In Range("A2:A" & lr)
If rcell.Value > 1 Then
If rcell.Value < 150 Then
rcell.Offset(, 4).Select
With Selection.Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeTop)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
With Selection.Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
rcell.Offset(, 4).Interior.ColorIndex = 15
End If
End If
Next rcell
End Sub
Bookmarks