
Originally Posted by
watersev
please check attachment
Thanks for the help water... Now I'm able to run macro in alternate cells(Like A1, A4, A7 etc). Please find the below code and suggest if it needs any further modification / improvement.
Private Sub Worksheet_Change(ByVal Target As Range)
For i = 1 To 10 Step 3
If Not Intersect(Target, Columns(i)) Is Nothing Then
For j = 1 To 10 Step 1
For Each cl In Target
If cl.Column = i Then
Application.EnableEvents = 0
If LCase(cl) = "yes" Then
cl.Offset(, 1).Clear
cl.Offset(, 1).Validation.Add Type:=xlValidateList, Formula1:="Yes, No"
cl.Offset(, 1).BorderAround LineStyle:=xlContinuous
ElseIf cl <> "" Then
With cl.Offset(, 1)
.Clear
.Value = "N/A"
.Interior.ColorIndex = 40
.BorderAround LineStyle:=xlContinuous
End With
ElseIf cl = "" Then
cl.Offset(, 1).Clear
End If
Application.EnableEvents = 1
End If
If j = 10 Then
Exit For
End If
Next
Next j
End If
Next i
End Sub
However, I need to achieve the following two points:
1. I don't want to run this macro after 10th row.
2. The macro should start from my desired location(i.e: Suppose from B5 or C4 etc.).
Please help me with this two point.
Cheers,
Sap.
Bookmarks