I cannot remember how to do it but instead of telling a macro to paste special text into a range or field - what the the vba used to paste into where it is selected:
Need to change - Range("m5").Select
Also, for future pastes, I want it to paste (0,1) over from where it is sitting.
Here is part of the macro
Cells.Find(What:="ACD Calls", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Activate
ActiveCell.Offset(1, 0).Select
Selection.Copy
Windows("June '12 - All In 1st + Transfers.xlsx").Activate
Sheets("CAR").Select
Range("m5").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Please help
Need to change - Range("m5").Select
Also, for future pastes, I want it to paste (0,1) over from where it is sitting.
Here is part of the macro
Cells.Find(What:="ACD Calls", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Activate
ActiveCell.Offset(1, 0).Select
Selection.Copy
Windows("June '12 - All In 1st + Transfers.xlsx").Activate
Sheets("CAR").Select
Range("m5").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Please help