Sub Formatowanie() ' ' Formatowanie Makro ' ' Selection.WholeStory Selection.Font.Name = "Times New Roman" Selection.Font.Size = 12 Selection.ParagraphFormat.Alignment = wdAlignParagraphJustify With Selection.ParagraphFormat .LeftIndent = CentimetersToPoints(0) .RightIndent = CentimetersToPoints(0) .SpaceBefore = 0 .SpaceBeforeAuto = False .SpaceAfter = 0 .SpaceAfterAuto = False .LineSpacingRule = wdLineSpace1pt5 .FirstLineIndent = CentimetersToPoints(1.25) .CharacterUnitLeftIndent = 0 .CharacterUnitRightIndent = 0 .CharacterUnitFirstLineIndent = 0 .LineUnitBefore = 0 .LineUnitAfter = 0 End With End Sub