Hi Team ,
I have 3 sheets Process, Master & Data
Process sheet Cell “C1” has row number Example:”A2”
My macro should copy data from Master sheet “A4:L200” and paste it in “Data”sheet based on cell value in Process sheet Cell “C1(in current case its Cell A2)
My current code doesn't work-
Worksheets("Master").Range("A4:L200").Copy
Worksheets("Data").Range(WB.Sheets("Process").Range("C1").Value).PasteSpecial Paste:=xlPasteValues
Thanks
chan
I have 3 sheets Process, Master & Data
Process sheet Cell “C1” has row number Example:”A2”
My macro should copy data from Master sheet “A4:L200” and paste it in “Data”sheet based on cell value in Process sheet Cell “C1(in current case its Cell A2)
My current code doesn't work-
Worksheets("Master").Range("A4:L200").Copy
Worksheets("Data").Range(WB.Sheets("Process").Range("C1").Value).PasteSpecial Paste:=xlPasteValues
Thanks
chan