I'm getting an error that I can't seem to figure out. I'm trying to search for a value in column F and set my Range to that cell. Then assign a value to a nearby cell using the offest formula. But I keep getting this error and I can't figure out why. The first line of code finds the matching value, but it doesn't seem to set the variable partB_Rng to the actual cell that value is in. I have a line of code above, Dim partB_Rng as Range so it is definitely a Range object.
Code:
Set partB_Rng = Range("F:F").Find(matchKey, LookIn:=xlValues)
Range(partB_Rng).Offset(0, 6).Value = AV_In