[VBA: définition de la zone d'impression]
Résolu/Fermé
A voir également:
- Excel vba imprimer zone d'impression
- Spouleur d'impression - Guide
- Zone telechargement - Accueil - Outils
- Liste déroulante excel - Guide
- Comment imprimer un tableau excel sur une seule page - Guide
- Si et excel - Guide
9 réponses
Armojax
Messages postés
1860
Date d'inscription
mercredi 19 janvier 2005
Statut
Membre
Dernière intervention
2 octobre 2024
1 528
30 août 2006 à 08:36
30 août 2006 à 08:36
On peut aussi utiliser la propriété Address de VBA :
Sub ZoneImp()
Dim intColMin As Integer, intColMax As Integer
Dim intLinMin As Integer, intLinMax As Integer
intColMin = 1
intColMax = 12
intLinMin = 2
intLinMax = 25
ActiveSheet.PageSetup.PrintArea = Range(Cells(intLinMin, intColMin), Cells(intLinMax, intColMax)).Address
End Sub
Sub ZoneImp()
Dim intColMin As Integer, intColMax As Integer
Dim intLinMin As Integer, intLinMax As Integer
intColMin = 1
intColMax = 12
intLinMin = 2
intLinMax = 25
ActiveSheet.PageSetup.PrintArea = Range(Cells(intLinMin, intColMin), Cells(intLinMax, intColMax)).Address
End Sub
16 août 2011 à 21:29