Glasgowsmile
Active Member
- Joined
- Apr 14, 2018
- Messages
- 280
- Office Version
- 365
- Platform
- Windows
Hello,
I have the following VBA
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?
I also tried this but I don't know for sure that the data is going to land in A10 each time.
I have the following VBA
VBA Code:
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?
VBA Code:
Range(Fnd.Offset(1)).Copy Sheet2.Range("A1")
I also tried this but I don't know for sure that the data is going to land in A10 each time.
VBA Code:
Range(Fnd.Offset(1), Range("A10")).Copy Sheet2.Range("A1")