Try this
Sub Macro1()
For nrow = 1 To ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row
Cells(nrow, 1).Select
With Selection.Interior
If .Pattern = xlNone And .TintAndShade = 0 And .PatternTintAndShade = 0 Then
Else
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorLight1
.TintAndShade = 0
.PatternTintAndShade = 0
End With
With Selection.Font
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
End With
Selection.Font.Bold = True
End If
If Not (Selection.Borders(xlEdgeLeft).LineStyle = xlNone And _
Selection.Borders(xlEdgeTop).LineStyle = xlNone And _
Selection.Borders(xlEdgeBottom).LineStyle = xlNone And _
Selection.Borders(xlEdgeRight).LineStyle = xlNone And _
Selection.Borders(xlInsideVertical).LineStyle = xlNone And _
Selection.Borders(xlInsideHorizontal).LineStyle = xlNone) Then
Selection.Borders(xlEdgeLeft).LineStyle = xlContinuous
Selection.Borders(xlEdgeTop).LineStyle = xlContinuous
Selection.Borders(xlEdgeBottom).LineStyle = xlContinuous
Selection.Borders(xlEdgeRight).LineStyle = xlContinuous
Selection.Borders(xlInsideVertical).LineStyle = xlContinuous
Selection.Borders(xlInsideHorizontal).LineStyle = xlContinuous
Selection.Borders(xlEdgeLeft).ColorIndex = 0
Selection.Borders(xlEdgeTop).ColorIndex = 0
Selection.Borders(xlEdgeBottom).ColorIndex = 0
Selection.Borders(xlEdgeRight).ColorIndex = 0
Selection.Borders(xlInsideVertical).ColorIndex = 0
Selection.Borders(xlInsideHorizontal).ColorIndex = 0
End If
End With
Next
End Sub
Bookmarks