I need to do a few things....
I am creating a new workbook (no problem)
I need to add Sheets after sheet3

Dim O As Object
Set O = CreateObject("excel.application")
O.Visible = True
O.Workbooks.Add
O.sheets.Add

Ok this is fine...but How do I make it add the sheet after Sheet3? (this way adds it before sheet1)

Also...how Do I rename the sheets? (Or add sheet with new name)

Thanks in Advance!

(I will have more questions later...)