I am creating a data entry form for clericals to use to enter data from a survey I am administering. Most of the questions are Yes/No, and I've created option groups that have two options, Yes or No. The data entered for each form goes into a table that contains just survey response information for surveys that have been received.
I want to be able to track those surveys where no answer is given for any Yes/No question, so there is no default value in the field definitions in my table. This means that on the form, neither Yes or No is selected by default, which is perfect. My problem is this:
I know there will be times when a data entry clerk inadvertently selects Yes or No on a question that has not been entered, and I cannot find a way for them to undo it. In other words, once they've decided to select Yes or No, there is no way (short of going into the data table and deleting the inadvertent entry) for the clerk to return that data field to an empty state. Here's what I've considered:
I could probably solve the problem by having a three-state option group, but for several reasons I would rather not have to do that. I thought I might be able to set an OnDoubleClick event to set the field back to Null, but that did not seem to work either. Any suggestions anyone?
I want to be able to track those surveys where no answer is given for any Yes/No question, so there is no default value in the field definitions in my table. This means that on the form, neither Yes or No is selected by default, which is perfect. My problem is this:
I know there will be times when a data entry clerk inadvertently selects Yes or No on a question that has not been entered, and I cannot find a way for them to undo it. In other words, once they've decided to select Yes or No, there is no way (short of going into the data table and deleting the inadvertent entry) for the clerk to return that data field to an empty state. Here's what I've considered:
I could probably solve the problem by having a three-state option group, but for several reasons I would rather not have to do that. I thought I might be able to set an OnDoubleClick event to set the field back to Null, but that did not seem to work either. Any suggestions anyone?