I
ina
Hello,
I have this piece of code: I would like to input in row.select the
range of the row.
cell = Range("A" + CStr(i)).Value
cell2 = Range("A" + CStr(j)).Value
If (cell) = (cell2) And (cell) <> " " Then
Rows("""i + ":" + j""").Select
Selection.Delete Shift:=xlUp
Else
i = i + 1
j = j + 1
End If
I have a problem in rows statement.
Thank you
Ina
I have this piece of code: I would like to input in row.select the
range of the row.
cell = Range("A" + CStr(i)).Value
cell2 = Range("A" + CStr(j)).Value
If (cell) = (cell2) And (cell) <> " " Then
Rows("""i + ":" + j""").Select
Selection.Delete Shift:=xlUp
Else
i = i + 1
j = j + 1
End If
I have a problem in rows statement.
Thank you
Ina