First Time with Word. I have the below statements:
If ActiveDocument.FormFields.Item("PLOReq"
.CheckBox.Value = True
If ActiveDocument.FormFields.Item("MLOReq"
.CheckBox.Value = True
If ActiveDocument.FormFields.Item("CLOReq"
.CheckBox.Value = True
If the first statement is true, I want the other two checkboxes to be unchecked. What I have is three check boxes and I only want one to be able to be checked when the user sends the form. Two questions: What do I need to add to rthe statements and do I create a module to put this in, if not where do I place the statements
Thanks in advance...
If ActiveDocument.FormFields.Item("PLOReq"

If ActiveDocument.FormFields.Item("MLOReq"

If ActiveDocument.FormFields.Item("CLOReq"

If the first statement is true, I want the other two checkboxes to be unchecked. What I have is three check boxes and I only want one to be able to be checked when the user sends the form. Two questions: What do I need to add to rthe statements and do I create a module to put this in, if not where do I place the statements
Thanks in advance...