You will need to run a macro on exit from "insp" :
Sub OEChkbox()
Select Case True
Case ActiveDocument.FormFields("insp").Result
ActiveDocument.FormFields("Dropdown4").DropDown.Value = 5
Case Else
ActiveDocument.FormFields("Dropdown4").DropDown.Value = 1 'or whatever
you want selected if the checkbox isn't checked.
End Select
End Sub

Signature
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Greg Maxey - Word MVP
My web site http://gregmaxey.mvps.org
Word MVP web site http://word.mvps.org
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Can anyone suggest a macro for a check box to select a drop down box
> field
[quoted text clipped - 6 lines]
> Any ideas?
> Thanks
ChrisK - 23 Mar 2008 15:13 GMT
Thanks thats perfect
> You will need to run a macro on exit from "insp" :
>
[quoted text clipped - 18 lines]
> > Any ideas?
> > Thanks