Hallo,
Ich versuche mit einem VBA-Code ein Word-Dokument zu durchsuchen und bei Treffer die eine MsgBox anzuzeigen und den Treffer zu markieren
und bei kein Treffer die andere MsgBox anzuzeigen.
das hab ich bis jetzt:
…
With Selection.Find
.Text = „1660131622“
.Replacement.Text = „“
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
If gefunden Then
Selection.Find.Execute _
antw = MsgBox(„Treffer !“, vbInformation): Exit Sub
Else
antw1 = MsgBox(„Kein Treffer !“, vbInformation)
End If
End Sub
Haut aber nicht hin, kann jemand helfen ?
Gruß Christian