Is there a way (using a macro) to copy data from one workbook to another with out having to actually having to view the workbook on the screen. I am sure there is but do not remember how it is done. I am trying to speed up the process and stop the flashing screen. The below example works just with the flashing screen.
If ((Worksheets("Operator Activity Report").Range("C" & A)) = z) Then
Range("B" & A, "N" & A).Select
Selection.Copy
Windows("Book1.xls").Activate
Worksheets("Sheet1").Range("C" &
).Select
ActiveSheet.Paste
Windows("Part B.xls").Activate
Worksheets("Operator Activity Report").Activate
y = y + 1
End If
If ((Worksheets("Operator Activity Report").Range("C" & A)) = z) Then
Range("B" & A, "N" & A).Select
Selection.Copy
Windows("Book1.xls").Activate
Worksheets("Sheet1").Range("C" &
ActiveSheet.Paste
Windows("Part B.xls").Activate
Worksheets("Operator Activity Report").Activate
y = y + 1
End If