FishermanFrank
Technical User
Hello, having difficulties in the syntax for a subroutine to highlight certain cells. The code compares values in cells. If cell values are equal, I need to highlight the cell. It appears that in the HighLiteCell Sub, the variable cr is lost and I'm getting an error message.
thanks for the help..
Public Sub CommandButton1_Click()
Dim cas, cre As long
Dim r, i, cr As Integer
r = 1
cr = 1
Do While Cells(cr, 3) <> Empty
cas = Cells(cr, 3).Value
Do While Cells(r, 6) <> Empty
cre = Cells(r, 6).Value
If cas = cre Then HighLiteCell
r = r + 1
Loop
r = 1
cr = cr + 1
Loop
End Sub
Sub HighLiteCell()
Cells(cr, 3).Interior.ColorIndex = 6
End Sub
thanks for the help..
Public Sub CommandButton1_Click()
Dim cas, cre As long
Dim r, i, cr As Integer
r = 1
cr = 1
Do While Cells(cr, 3) <> Empty
cas = Cells(cr, 3).Value
Do While Cells(r, 6) <> Empty
cre = Cells(r, 6).Value
If cas = cre Then HighLiteCell
r = r + 1
Loop
r = 1
cr = cr + 1
Loop
End Sub
Sub HighLiteCell()
Cells(cr, 3).Interior.ColorIndex = 6
End Sub