You need to reprotect the document for the formfields to work.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
Yes, Doug is correct. Here is a little more info in the form of an
example that will hopefully help you. Also, if you password protect
your template you will have to incorporate that into you vba code as
well.
Cheers!
Sub MySubforDD()
With ActiveDocument
.Unprotect
Select Case Selection.FormFields(1).Result
Case "My Item 1"
Selection.Tables(1).Cell(1, 3).Shading.BackgroundPatternColor
= wdColorRed
Case "My Item 2"
Selection.Tables(1).Cell(1, 3).Shading.BackgroundPatternColor
= wdColorOrange
Case Else
Selection.Tables(1).Cell(1, 3).Shading.BackgroundPatternColor
= wdColorWhite
End Select
.Protect wdAllowOnlyFormFields, NoReset
End With
End Sub
On Jan 27, 3:53 am, "Doug Robbins - Word MVP"
<d...@REMOVECAPSmvps.org> wrote:
> You need to reprotect the document for the formfields to work.
>
[quoted text clipped - 16 lines]
>
> > Thanks in advance- Hide quoted text -- Show quoted text -