Hi Dave,
I am using the below codes for opening-up the files and copy/pasting...
-------------------------------------------
strFileName = Application.GetOpenFilename("Excel Templates (*.xlt), *.xlt")
If strFileName = "" Then Exit Sub
Workbooks.Open(strFileName, Editable:=True).RunAutoMacros
Which:=xlAutoOpen
' After selecting the disered *.xlt file from above the copy-paste
process starts
' Application.ScreenUpdating = False <<< I removed this line couse it
didn't help.
Worksheets("Sheet13").Activate
Range("C21:C30").Select
Selection.Copy
Windows("ANALIZR4.XLS").Activate
Worksheets("Sheet1").Activate
Range("B1:B10").Select
ActiveSheet.Paste , True
-------------------------------------
The last 7 lines of the code above is beeing repeated for 10 times for
different cell ranges between same workbooks (from selected *.xlt to
ANALIZR4.XLS Sheet1). And the whole process is repeated right from the start
a second time for opening the second *.xlt file, doing similar copy
operations from there (and paste operations to ANALIZR4.XLS Sheet2).
I am using XL2000.
Can I do the copy/paste operations without activating it?. I'll appreciate
recommendations for simplifying my code and more importantly "hiding" the
windows during the copy/paste operation.
Regards
TIA
Martyn