Remove borders
Target.Borders.LineStyle = xlNone
Use offset to change Col B formatting
e.g
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A:A")) Is Nothing Then
Select Case Target.Value
Case 100
Target.Offset(0, 1).Interior.ColorIndex = 5
With Target.Offset(0, 1).Font
.Bold = True
.Italic = True
.Color = 17
.Underline = True
End With
Case 200
Target.Offset(0, 1).Interior.ColorIndex = 15
With Target.Offset(0, 1).Font
.Bold = False
.Italic = False
.Color = 27
.Underline = False
With Target.Offset(0, 1).Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlThin
.ColorIndex = xlAutomatic
End With
End With
End Select
End If
End Sub
VBA Noob
Bookmarks