JOB: To copy RANGE from one WORKBOOK to ANOTHER (ANOTHER workbook exists and needs to be opened)
- Copy range: - `Worksheets("paste").Range("A2:BD500").SpecialCells(xlCellTypeVisible).Copy`
- Open new file: - Workbooks.Open Filename:="C:\Test\test.xlsx", WriteResPassword:="WriteFile"
- Activate sheet and paste @RANGE A6 - Windows("test.xlsx").Activate Selection.Range("A6").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False
PROBLEM: It doesn't paste in A6!!!! It goes in whatever cell!!!!
 
     
     
    