try something like this
dim x as range
a = Worksheets("Work Order Tracking Form").Cells(Rows.Count, 1).End(xlUp).Row
For i = 3 To a
If Worksheets("Work Order Tracking Form").Cells(i, 8).Value = "Complete" Then
if x is nothing then
set x=Worksheets("Work Order Tracking Form").Cells(i, 8)
else
set x = union(x,Worksheets("Work Order Tracking Form").Cells(i, 8))
end if
end if
next
if not x is nothing then
x.entirerow.copy Worksheets("Completed 2020").Cells(Rows.Count, 1).End(xlUp)(2)
x.entirerow.delete
end if
Application.CutCopyMode = False
ThisWorkbook.Worksheets("Work Order Tracking Form").Cells(1, 1).Select
Bookmarks