Hi all
The subject mentioned seem to be easy. However, I have this macro which will add a new workbook with Sheet1.
Due to all my other macro are in this workbook, I need to change the following line to add a new sheet and the others sheets
in the existing workbook.
Set BaseWks = Workbooks.Add(xlWBATWorksheet).Worksheets(1)
BaseWks.Parent.Worksheets.Add.Name = “Product”
BaseWks.Parent.Worksheets.Add.Name = “Code”
BaseWks.Parent.Worksheets.Add.Name = “Mode”
How do I change these lines?
Thanks
regards,