Bouton Imprimer
Spepin
Messages postés
30
Date d'inscription
Statut
Membre
Dernière intervention
-
Spepin Messages postés 30 Date d'inscription Statut Membre Dernière intervention -
Spepin Messages postés 30 Date d'inscription Statut Membre Dernière intervention -
Peut-on créer un bouton imprimer avec une sélection spécifique, exemple; A15 à E15 (gauche à droite) et A60 à H60 (haut en bas). centrer. Merci d'avance
A voir également:
- Bouton Imprimer
- Journal de naissance gratuit a imprimer - Télécharger - Histoire & Religion
- Comment imprimer en a5 - Guide
- Imprimer tableau excel sur une page - Guide
- Bouton reinitialisation pc - Guide
- Diagnostic bouton photo - Accueil - Outils
1 réponse
En fait je veut la colonne A14;Ba14;F14;H14 à A60;B60;F60;H60 en l'introduisant dans la formule comment faire, merci d'avance;
Sub PRINT_ZONE()
' PRINT_ZONE Macro
Range("A14:B14").Select
Range(Selection, Selection.End(xlDown)).Select
Range(Selection, Selection.End(xlDown)).Select
ActiveSheet.PageSetup.PrintArea = "$A14:$E14"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, _
IgnorePrintAreas:=False
Range("A1").Select
End Sub
Sub PRINT_ZONE()
' PRINT_ZONE Macro
Range("A14:B14").Select
Range(Selection, Selection.End(xlDown)).Select
Range(Selection, Selection.End(xlDown)).Select
ActiveSheet.PageSetup.PrintArea = "$A14:$E14"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True, _
IgnorePrintAreas:=False
Range("A1").Select
End Sub