Hello

I Have recorded a macro thats copy from one workbook to another in two steps. It looks like this:

______________________________________________________________________________
Range("E31:M50").Select
Selection.Copy
Workbooks.Open Filename:= _
"G:\00_Koncern\33_Ekonomi\Ekonomiska rapporter & mallar\Agresso\BO Aka Hus.xls"

Range("B13").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False

ActiveWindow.ActivatePrevious
Range("D31:D50").Select
Application.CutCopyMode = False
Selection.Copy
Windows("BO Aka Hus.xls").Activate
Range("O13").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False

Range("O4").Select

Application.ScreenUpdating = True
___________________________________________________

The problem is that if I have another (a third one) workbook open when I run this macro, it often copies cells from this workbook which I dont like! I Suppose it is the redmarked that I must do something about but I dont know how. The thin is that the workbook from where I want to copy the cells are have diffrent filenames.

Is there someone that can help me. I would be happy!