Here is the some code i took from someother existing vba to start
Set XL = CreateObject("Excel.Application")
XL.Visible=True
XL.Workbooks.Open "path\book1.xls"
XL.Worksheets.Add(After:=Sheet1)
Here i need to add two different sheets to book1.xls and save as
book12013DEC03.xls the two sheets come from book2.xls and book3.xls(one sheet
from each) book1.xls has one sheet already and i need the new sheets after this.
XL.ActiveWorkbook.SaveAs "path\book12013DEC03.xls"
XL.ActiveWorkbook.Close
XL.Quit