hey group
How can i have something like this loop to run from ccess application which is already currently opn and where work is done ?
How can i have something like this loop to run from ccess application which is already currently opn and where work is done ?
Code:
With objActiveWkb.Worksheets("Reconciliation Sheet")
For ii = 5 To 200
If Range(ii, 9) = "NO" Then
Range(ii + 1, 9).Interior.ColorIndex = "yellow"
End If
Next
End With