
Originally Posted by
foxbeat
This method works. It´s compare the data between the two sheets and writes "Equal" or "Not Equal" in the third sheet. It can be easily edited to reach your requirements.
Option Explicit
Sub test()
Dim rng As Range
Dim rng2 As Range
Dim DataSh1 As Variant
Dim DataSh2 As Variant
Dim i As Single
Dim j As Single
Dim Sh1 As String
Dim Sh2 As String
Dim Sh3 As String
Sh1 = "29 Stock"
Sh2 = "29 Stock Adjusted"
Sh3 = "29 Stock Unadj Vs Adj"
Set rng = Sheets(Sh1).Range("A1:Z1000")
Set rng2 = Sheets(Sh2).Range("A1:Z1000")
DataSh1 = rng.Value
DataSh2 = rng2.Value
Sheets(Sh3).Select
For i = 1 To UBound(DataSh1, 2)
For j = 1 To UBound(DataSh1, 1)
If IsEmpty(DataSh1(j, i)) = False Then
If DataSh1(j, i) <> DataSh2(j, i) Then
Cells(j, i) = "Not equal"
Else: Cells(j, i) = "Equal"
End If
End If
Next j
Next i
Set rng = Nothing
Set rng2 = Nothing
End Sub
Bookmarks