.
En este post voy a mostrar como seleccionar una impresora distinta a la que está por defecto o macro para seleccionar impresora distinta a la impresora activa, anteriormente te mostré como configurar una hoja de Excel previo a la impresión. Muchas veces se requiere imprimir en una impresora, pero que es distinta a la que se encuentra configurada por defecto, con esta macro lo que se hace es seleccionar una impresora distinta a la activa y luego imprimir, cabe aclarar que se realiza todo por macro, ya que hay una variante que mostraré más adelante que es que aparezca un cuadro de diálogo con el listado de impresoras para elegir la que queramos y luego imprimir.
Antes de continuar, recomiendo que leas un excelente libro sobre Excel el que te ayudará operar las planillas de cálculo, haz click acá, si quieres aprender sobre Excel, en inglés, entonces debes hacer click here. Si lo que necesitas es aprender o profundizar sobre la programación de macros con VBA este es unos de los mejores cursos on line que he visto en internet.
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 userform
Sub PrintSheet()
Dim def As String, NewPrint As String
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 = Truedef = Application.ActivePrinter
NewPrin = «PDF Creator en Ne00:»
Application.ActivePrinter = NewPrin
‘ActiveSheet.PrintOut
ActiveWorkbook.PrintOut Copies:=2, Collate:=True, IgnorePrintAreas:=False
Application.ActivePrinter = def
End Sub
Dim def As String, NewPrint As String
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
def = Application.ActivePrinter
NewPrin = «PDF Creator en Ne00:»
Application.ActivePrinter = NewPrin
‘ActiveSheet.PrintOut
ActiveWorkbook.PrintOut Copies:=2, Collate:=True, IgnorePrintAreas:=False
Application.ActivePrinter = def
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