Is it possible to copy a specific sheet(SheetPrice) in excel without opening the file to another workbook. (this workbook is open)
This is what I am trying to do:
Dim WB1 As Workbook, WB2 As Workbook
Set WB1 = ActiveWorkbook 'Current One
Set WB2 = Workbooks.Open(Filename:=AnotherFile)
'-----------------------------
' This is where I am having a problem
Range(Sheets(sSheetMaster)).Copy
'------------------------------------
WB1.Activate
ActiveSheet.Paste
WB2.Close
Please advice,
Thank you.
Dré