Hi all,

I have a replace sub working, but need it to disregard the first page of this word document. The document could be any length, but just the first page needs to be ignored.

VB Code:
  1. Selection.MoveDown Unit:=wdScreen, Count:=3
  2.     Selection.EndKey Unit:=wdStory, Extend:=wdExtend
  3.     Selection.Find.ClearFormatting
  4.     Selection.Find.Replacement.ClearFormatting
  5.     With Selection.Find
  6.         .Text = ".00"
  7.         .Replacement.Text = ""
  8.         .Forward = True
  9.         .Wrap = wdFindAsk
  10.         .Format = False
  11.         .MatchCase = False
  12.         .MatchWholeWord = False
  13.         .MatchWildcards = False
  14.         .MatchSoundsLike = False
  15.         .MatchAllWordForms = False
  16.     End With
  17.     Selection.Find.Execute Replace:=wdReplaceAll
  18.     Selection.HomeKey Unit:=wdLine
  19.     Selection.HomeKey Unit:=wdStory

This selects everything from page 2 down, replaces the ".00" with nothing, and then takes the cursor home. BUT - when you run this macro (from on the toolbar), it does indeed replace these instances of ".00" from the first page.

Any help or suggestions???