K
Keri in Vermont
I have a drop down field where a choice is made - below "Request = 37". Then
the next field is an option box with 4 choices. This is the code for one
choice [call it 'A']. If they click here with the above previous choice,
then they have a decision. If they choose to keep the answer, they can & it
goes on - that works. If they realize they made a mistake and choose 'no'
then I need to allow them to make another choice ['B', 'C', or 'D'].
I have the following code:
If Request = 37 Then
response = MsgBox("Please double check that an appeal was actually filed
for this case. Do you want to keep this answer?", vbYesNo)
If response = vbYes Then Exit Sub
If response = vbNo Then ??this is where I need help??
End If
At the above "??" text, how do I allow them to be able to choose a different
answer?
THANK YOU
the next field is an option box with 4 choices. This is the code for one
choice [call it 'A']. If they click here with the above previous choice,
then they have a decision. If they choose to keep the answer, they can & it
goes on - that works. If they realize they made a mistake and choose 'no'
then I need to allow them to make another choice ['B', 'C', or 'D'].
I have the following code:
If Request = 37 Then
response = MsgBox("Please double check that an appeal was actually filed
for this case. Do you want to keep this answer?", vbYesNo)
If response = vbYes Then Exit Sub
If response = vbNo Then ??this is where I need help??
End If
At the above "??" text, how do I allow them to be able to choose a different
answer?
THANK YOU