Hello all,
Stuck on a code where I need to find key word and from that key word copy all rows below it.
I keep getting Method 'Range' of Oject' _ Global Failed error
Any help would be great!
Thanks,
JJ
Stuck on a code where I need to find key word and from that key word copy all rows below it.
I keep getting Method 'Range' of Oject' _ Global Failed error
Rich (BB code):
Rich (BB code):
Rich (BB code):
Header2 = Kps.Cells(5, 2)
MtTabs = Cells(Rows.Count, 1).End(xlUp).Row
For q = 6 To MtTabs
MAITName = Kps.Cells(q, 1)
Family = Cells(Rows.Count, 7).End(xlUp).Row
Range(Sheets(MAITName).Cells.Find(what:=Header2).Offset(1, 0), Family).Copy ' My Error is here
Any help would be great!
Thanks,
JJ