Hello,
I have the following VBA
Set Fnd = Range("A:A").Find("name id:", , , xlPart, , , False, , False)
and I want to copy that name id information and currently, I'm trying this but it's not working - what am I missing here?
Range(Fnd.Offset(1)).Copy Sheet2.Range("A1")
I also...