
If cells(1,1 ) ??????????? |
if cells(1,1)="123" then ... ... ... end if |
Sub prova()
If Cells(1, 1) = "123" Then
Cells(1, 2) = Cells(1, 2) + 1
End If
End Sub
|
Sub prova()
For i = 1 To 4
If InStr(Cells(i, 1), "Rossi") Then
Cells(i, 3) = Cells(i, 2) + 1
End If
Next
End Sub |
