G
gav meredith
Hi,
Within the following code, can someone please show me how to implement
this.....
Sub Checker()
Dim cell as range
For Each cell In Range("D9
98")
If Not IsEmpty(cell) Then
If IsNumeric(cell.Value) Then
If cell(cell.row, "C").Interior.ColorIndex = 3 _
And _
cell.Value > 1 Then
cells(cell.Row,"G").Value = Cell.Value
End If
End If
End If
Nexr
End Sub
This is the existing code that copies and pastes based on a cell value
greater than 1. What the above is supposed to accomplish is the same BUT a
red cell in columnC would paste to an alternate location. Thanks so much!!!!
Private Sub CommandButton3_Click()
Within the following code, can someone please show me how to implement
this.....
Sub Checker()
Dim cell as range
For Each cell In Range("D9
If Not IsEmpty(cell) Then
If IsNumeric(cell.Value) Then
If cell(cell.row, "C").Interior.ColorIndex = 3 _
And _
cell.Value > 1 Then
cells(cell.Row,"G").Value = Cell.Value
End If
End If
End If
Nexr
End Sub
This is the existing code that copies and pastes based on a cell value
greater than 1. What the above is supposed to accomplish is the same BUT a
red cell in columnC would paste to an alternate location. Thanks so much!!!!
Private Sub CommandButton3_Click()