Sub TabulatorKi() ' ' TabulatorKi Makró ' Rögzítés: 2010.07.08., készítő: eNeL ' Selection.HomeKey Unit:=wdStory ' A dokumentum elejére állunk ' Ez a rész a tabulátor jeleket távolítja el. ' Selection.Find.ClearFormatting With Selection.Find .Text = "^t" .Replacement.Text = "" .Forward = True .Wrap = wdFindContinue .Format = False .MatchCase = False .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms = False End With Selection.Find.Execute Selection.HomeKey Unit:=wdStory ' A dokumentum elejére állunk End Sub