I need to transfer data from 1 worksheet to another worksheet..
Below is the code i m using to transfer the data..
But when i try to do this using vba i get an "#Ref" error..
Can any one help me in fixing this error...
Below is the code i m using to transfer the data..
Code:
sub mm() Worksheets("planning").Range("P7:P355").Copy Worksheets("Sheet2").Range("C2:C355").PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=False MsgBox "done" end sub
Can any one help me in fixing this error...
Comment