Help needed in using marcos
Solved/Closed
Asmodeux
Posts
1
Registration date
Sunday 28 July 2013
Status
Member
Last seen
28 July 2013
-
28 Jul 2013 à 11:48
Asmodeux - 30 Jul 2013 à 11:41
Asmodeux - 30 Jul 2013 à 11:41
4 responses
TrowaD
Posts
2921
Registration date
Sunday 12 September 2010
Status
Contributor
Last seen
27 December 2022
555
29 Jul 2013 à 11:44
29 Jul 2013 à 11:44
Hi Asmodeux,
You are comparing ws2 with ws2.
So change the 2 into 3 in one of the two code lines:
Set CheckRange = ws2.Range("E2:E80")
or
If cell.Value <> ws2.Cells(cell.Row, cell.Column).Value Then
Best regards,
Trowa
You are comparing ws2 with ws2.
So change the 2 into 3 in one of the two code lines:
Set CheckRange = ws2.Range("E2:E80")
or
If cell.Value <> ws2.Cells(cell.Row, cell.Column).Value Then
Best regards,
Trowa
Thank man it worked ...
One more question if you don't mind helping me around...
How to do paste the difference into another worksheet ?
Greatly appreciate for your help
One more question if you don't mind helping me around...
How to do paste the difference into another worksheet ?
Greatly appreciate for your help
TrowaD
Posts
2921
Registration date
Sunday 12 September 2010
Status
Contributor
Last seen
27 December 2022
555
30 Jul 2013 à 10:31
30 Jul 2013 à 10:31
Hi Asmodeux,
I'm here to help, so here we go.
It depends on which value you want to paste.
Change:
Best regards,
Trowa
I'm here to help, so here we go.
It depends on which value you want to paste.
Change:
If cell.Value <> ws2.Cells(cell.Row, cell.Column).Value Then cell.Interior.Color = RGB(200, 160, 35) End IfInto:
If cell.Value <> ws2.Cells(cell.Row, cell.Column).Value Then
cell.copy Sheets("Your sheet name").range("A"&rows.count).end(xlup).offset(1,0)
cell.Interior.Color = RGB(200, 160, 35)
End IfOr:
If cell.Value <> ws2.Cells(cell.Row, cell.Column).Value Then
ws2.Cells(cell.Row, cell.Column).copy Sheets("Your sheet name").range("A"&rows.count).end(xlup).offset(1,0)
cell.Interior.Color = RGB(200, 160, 35)
End If
Best regards,
Trowa