What i actually need is to insert an worksheet in the same file that i had opened. That mean i had already open an excel file and i wish to insert a new excel sheet on the excel file. How can i do that.

I had a method which it does to open a new new excel worksheet. Meaning the one i open i is but it open one more empty excel program. This isn't what i wanted. Can anyone help?

The coding are as below:

Public Function addNewWorkSheet() As Boolean
'To add new worksheets inside Excel
xlSheet = xlApp.Workbooks.Add.Worksheets()
End Function