Excel 2003

Como insertar con un solo movimiento más de una hoja en excel

1 respuesta

Respuesta
1
Lamentablemente no se puede hacer eso a menos que usemos una macro,.. te paso el código, llamas al editor de visual basic, insertar->modulo->y aquí pegas el sge código..- luego ejecutas la macro.----
Luego de ejecutarla te va a a aparecer un cuadro donde te pregunta cuantas hojas agregar, y ponele el numero que quieras.
Sub add_sheets()
Dim nbrSh As Integer, Counter As Integer
nbrSh = Application.InputBox(prompt:="Cuantas hojas agregar?", _
Title:="Agregar Hojas", Type:=1)
Counter = 0
While Counter < nbrSh
Sheets.Add After:=Sheets(Sheets.Count)
Counter = Counter + 1
Wend
End Sub
Sub add_sheets()Dim nbrSh As Integer, Counter As Integer
nbrSh = Application.InputBox(prompt:="Cuantas hojas agregar?", _Title:="Agregar Hojas", Type:=1)
Counter = 0
While Counter < nbrShSheets.Add After:=Sheets(Sheets.Count)Counter = Counter + 1Wend
End Sub
Suerte cualquier duda escribime...----
Un abrazo.

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas