A voir également:
- Enregistrer un fichier en PDF sur un commun
- Lire le coran en français pdf - Télécharger - Histoire & Religion
- Comment faire un fichier pdf - Guide
- Comment ouvrir un fichier epub ? - Guide
- Comment réduire la taille d'un fichier - Guide
- Fichier rar - Guide
1 réponse
Bonjour
voila une macro PDF avec format edition
a toi de voir si ca te va
A+
Maurice
voila une macro PDF avec format edition
a toi de voir si ca te va
Sub EditionPDF() Nlig = Range("B" & Rows.Count).End(xlUp).Row 'Application.PrintCommunication = False With ActiveSheet.PageSetup .PrintArea = "$B$1:$P$" & Nlig .PrintTitleRows = "$3:$3" .LeftMargin = Application.InchesToPoints(0.25) .RightMargin = Application.InchesToPoints(0.25) .TopMargin = Application.InchesToPoints(0.75) .BottomMargin = Application.InchesToPoints(0.75) .HeaderMargin = Application.InchesToPoints(0.3) .FooterMargin = Application.InchesToPoints(0.3) .Zoom = 55 End With 'Application.PrintCommunication = True Chemin = ThisWorkbook.Path & "\" Fiche = "Dosier" NomFiche = Chemin & Fiche & ".pdf" ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _ Filename:=NomFiche, _ Quality:=xlQualityMinimum, _ IncludeDocProperties:=True, _ IgnorePrintAreas:=False, _ OpenAfterPublish:=False End Sub
A+
Maurice