A family of Microsoft word processing software products for creating web, email, and print documents.
I would insert both pieces of text into the document and have one inside a bookmark Denied and the other inside a bookmark Approved
Then in a macro run on exit from the Status DropDown Formfield have the following code
Sub StatusExit()
With ActiveDocument
If .FormFields("Status").DropDown.Value = "Approved" Then
.Unprotect
.Bookmarks("Approved").Range.Font.Hidden = False
.Bookmarks("Denied").Range.Font.Hidden = True
.Protect wdAllowOnlyFormFields, True
Else
.Unprotect
.Bookmarks("Approved").Range.Font.Hidden = True
.Bookmarks("Denied").Range.Font.Hidden = False
.Protect wdAllowOnlyFormFields, True
End If
End With
End Sub