you forgot a lot of dots:
But it's not clear to me what you want to compare.
I think you should also dive into how to 'address' sheets, columns , ranges in Excel
For Each cl In sheets("WkSht1").columns(1).specialcells(2)
If cl.Value <> sheets("WkSht2").range(cl.address).Value Then
With sheets("Differences Sheet")
.Cells(cl.Row, 1) = cl.Address(0,0)
.Cells(cl.Row, 2) = cl.Value
.Cells(cl.row, 3) = sheets("WkSht2").range(cl.address).Value
End With
End If
Next
But maybe a oneliner suffices ( cfr. the attachment):
Sub snb()
Sheets("Blad3").Range("A1:C300") = [if(Blad1!A1:A300=Blad2!A1:A300,"",choose(column(A1:C300),address(row(A1:C300),column(A1:A300)),Blad1!A1:A300,Blad2!A1:A300))]
End Sub
Bookmarks