.
Anteriormente se han presentado una serie de artículos relacionados con la impresión en Excel, como por ejemplo como configurar una hoja de Excel mediante macro, imprimir una hoja del libro de Excel y imprimir en impresora distinta a la que se encuentra por defecto a ello se suma este nuevo post que tiene por objeto mostrar una macro para imprimir un rango de datos o selección de una hoja de Excel.
El ejemplo presentado, en primero lugar procede a configurar la hoja acomodando margenes, encabezados y pie de páginas, orientación hoja, etc., luego procede a imprimir la selección o rango seleccionado a través del siguiente código:
No es necesario al configurar la página poner todos los códigos, acá se agregan a los fines didácticos, pero con solo agregar los códigos que se necesita, se configura la página y luego se imprime, es decir, tal vez solo requerimos que la página se configure con ciertos márgenes superior, inferior, derecho e izquierdo; con orientación horizontal de la hoja, ajustando a una página de ancho; entonces para ello solo debemos tener el siguiente código, el resto de la codificación no interesa a tales fines:
Una vez configurada la página se emite la orden de impresión de todo el libro de Excel con el siguiente código:
Selection.PrintOut Copies:=2, Collate:=True, IgnorePrintAreas:=False
La primer parte del código es lo que establece o da la orden de imprimir es decir
Selection.PrintOut
El resto de argumentos que acompañan al código anterior no son necesarios, pero sirven para determinar la cantidad de copias que necesitamos imprimir como así también si estas deben estar intercaladas y en este caso no ignora el área de impresión que pudiera estar establecido.
Desde el link final podrás descargar el ejemplo totalmente GRATUITO denominado Macro que imprime todo el libro de Excel, recordando que si este o alguno de los cientos de ejemplos publicados te fueron de utilidad y puedes, aporta a seguir manteniendo esta página.
El vídeo que sigue muestra una explicación más detallada y gráfica de la macro presentada, recomiendo observar para una más fácil comprensión de la macro; suscribe a nuestra web desde la parte superior derecha de la página ingresando tu mail y a nuestro canal de You Tube para recibir en tu correo vídeos explicativos sobre macros interesantes, como por ejemplo formulario que crea un listado de todas las hojas para poder luego seleccionarlas, buscar en listbox mientras escribes en textbox, ordenar hojas libro excel por su nombre, conectar Excel con Access y muchos ejemplos más.
if (payload.eventType == ‘subscribe’) {
// Add code to handle subscribe event.
} else if (payload.eventType == ‘unsubscribe’) {
// Add code to handle unsubscribe event.
}
if (window.console) { // for debugging only
window.console.log(‘YT event: ‘, payload);
}
}
Código que se inserta en un módulo
Sub PrintSelection()
Application.Dialogs(xlDialogPrinterSetup).Show
Application.PrintCommunication = False
With ActiveSheet.PageSetup
.PrintTitleRows = «»
.PrintTitleColumns = «»
End With
Application.PrintCommunication = True
ActiveSheet.PageSetup.PrintArea = «»
Application.PrintCommunication = False
With ActiveSheet.PageSetup
.LeftHeader = «»
.CenterHeader = «»
.RightHeader = «»
.LeftFooter = «»
.CenterFooter = «»
.RightFooter = «»
.LeftMargin = Application.InchesToPoints(0.7)
.RightMargin = Application.InchesToPoints(0.7)
.TopMargin = Application.InchesToPoints(0.75)
.BottomMargin = Application.InchesToPoints(0.75)
.HeaderMargin = Application.InchesToPoints(0.3)
.FooterMargin = Application.InchesToPoints(0.3)
.PrintHeadings = False
.PrintGridlines = False
.PrintComments = xlPrintNoComments
.PrintQuality = 600
.CenterHorizontally = False
.CenterVertically = False
.Orientation = xlPortrait
.Draft = False
.FirstPageNumber = xlAutomatic
.Order = xlDownThenOver
.BlackAndWhite = False
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = 0
.PrintErrors = xlPrintErrorsDisplayed
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.ScaleWithDocHeaderFooter = True
.AlignMarginsHeaderFooter = True
.EvenPage.LeftHeader.Text = «»
.EvenPage.CenterHeader.Text = «»
.EvenPage.RightHeader.Text = «»
.EvenPage.LeftFooter.Text = «»
.EvenPage.CenterFooter.Text = «»
.EvenPage.RightFooter.Text = «»
.FirstPage.LeftHeader.Text = «»
.FirstPage.CenterHeader.Text = «»
.FirstPage.RightHeader.Text = «»
.FirstPage.LeftFooter.Text = «»
.FirstPage.CenterFooter.Text = «»
.FirstPage.RightFooter.Text = «»
End With
Application.PrintCommunication = True
Selection.PrintOut Copies:=2, Collate:=True, IgnorePrintAreas:=False
End Sub
Application.PrintCommunication = False
With ActiveSheet.PageSetup
.PrintTitleRows = «»
.PrintTitleColumns = «»
End With
Application.PrintCommunication = True
ActiveSheet.PageSetup.PrintArea = «»
Application.PrintCommunication = False
With ActiveSheet.PageSetup
.LeftHeader = «»
.CenterHeader = «»
.RightHeader = «»
.LeftFooter = «»
.CenterFooter = «»
.RightFooter = «»
.LeftMargin = Application.InchesToPoints(0.7)
.RightMargin = Application.InchesToPoints(0.7)
.TopMargin = Application.InchesToPoints(0.75)
.BottomMargin = Application.InchesToPoints(0.75)
.HeaderMargin = Application.InchesToPoints(0.3)
.FooterMargin = Application.InchesToPoints(0.3)
.PrintHeadings = False
.PrintGridlines = False
.PrintComments = xlPrintNoComments
.PrintQuality = 600
.CenterHorizontally = False
.CenterVertically = False
.Orientation = xlPortrait
.Draft = False
.FirstPageNumber = xlAutomatic
.Order = xlDownThenOver
.BlackAndWhite = False
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = 0
.PrintErrors = xlPrintErrorsDisplayed
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.ScaleWithDocHeaderFooter = True
.AlignMarginsHeaderFooter = True
.EvenPage.LeftHeader.Text = «»
.EvenPage.CenterHeader.Text = «»
.EvenPage.RightHeader.Text = «»
.EvenPage.LeftFooter.Text = «»
.EvenPage.CenterFooter.Text = «»
.EvenPage.RightFooter.Text = «»
.FirstPage.LeftHeader.Text = «»
.FirstPage.CenterHeader.Text = «»
.FirstPage.RightHeader.Text = «»
.FirstPage.LeftFooter.Text = «»
.FirstPage.CenterFooter.Text = «»
.FirstPage.RightFooter.Text = «»
End With
Application.PrintCommunication = True
Selection.PrintOut Copies:=2, Collate:=True, IgnorePrintAreas:=False
End Sub
.
If this post was helpful INVITE ME A COFFEE and so help keep up the page, CLICK to download free example.
Si te gustó por favor compártelo con tus amigos
If you liked please share it with your friends