Maybe something like this?
Code doesn't error but doesn't give results either. why?
Code:
Sub LoadEquivalentTrial()
Dim OutPL As Worksheet
Set OutPL = Sheets("Sheet2")
Dim OutIY As Worksheet
Set OutIY = Sheets("Sheet1")
Set fso = CreateObject("Scripting.filesystemobject")
OutPL.Activate
OutIY.Activate
ThisWorkbook.Activate
'ActiveSheet.ListObjects("List1").Unlist
For i = 10 To Cells(Rows.Count, 1).End(xlUp).Row
Set findit = OutIY.Range("A:A").Find(what:=Cells(i, 1).Value)
If OutIY.Cells(i, "D").Value = OutIY.Cells(i, "F").Value Then If (Int(Cells(i, "G").Value = (today))) Then Cells(findit.Row, "G") = (today()) And Cells(i, "F").Value = Cells(i, "D").Value 'compares the two most recently acquired qty values found in Incode for any value change
'Adds date to values which change for current qty.
' If value changes, value moves to current column (F)
'End If
Next i
'End If
MsgBox "Done"
End Sub
I've attached another example with the inserted code.