Variant does not contain an object
You referred to a variable of type Variant as though it contained an object reference, but no such reference has been assigned to it. For example:
Dim varV As Variant
varV.Something ' Illegal.
Remove the reference or insert a statement before it that assigns an object reference to the Variant.