bom dia a Todos!!!
como que crio nova aba em um Arquivo ja existente do excel
exemplo
plan1 plan2 plan3
como que crio nova aba em um Arquivo ja existente do excel
exemplo
plan1 plan2 plan3
Dim xlExcel As Object
Dim xlPasta As Object
Dim xlPlanilha As Object
Set xlExcel = CreateObject("Excel.Application")
Set xlPasta = xlExcel.Workbooks.Open("caminho_do_arquivo\planilha.xlsx")
Set xlPlanilha = xlPasta.Sheets.Add(After:=xlPasta.Sheets(xlPasta.Sheets.Count))
xlPlanilha.Name = "Nome da aba"
xlPasta.Save
xlPasta.Close
xlExcel.Quit
Set xlPlanilha = Nothing
Set xlPasta = Nothing
Set xlExcel = Nothing
Marcelo David gosta desta mensagem