R
Radhika
I have two fields of interest of a form:
1. NoProblemPresent (Yes/No)
2. Problem Description (drop down)
I want 'Problem description to default to 'N/A' if 'NoProblemPresent' is
checked.
Here is what i did:
1. Create a drop down box for 'Problem Description' with N/A as one of the
options.
2. On the 'On Got Focus' even of the 'Problem Description' drop down add the
following code:
If Me.NoProblemPresent Then
Me.[Problem Description] = "N/A"
End If
End Sub
However, when i try to execute the event i get the following message:
'Invalid call or procedure'.
What am i doing wrong?
Thank you,
Radhika
1. NoProblemPresent (Yes/No)
2. Problem Description (drop down)
I want 'Problem description to default to 'N/A' if 'NoProblemPresent' is
checked.
Here is what i did:
1. Create a drop down box for 'Problem Description' with N/A as one of the
options.
2. On the 'On Got Focus' even of the 'Problem Description' drop down add the
following code:
If Me.NoProblemPresent Then
Me.[Problem Description] = "N/A"
End If
End Sub
However, when i try to execute the event i get the following message:
'Invalid call or procedure'.
What am i doing wrong?
Thank you,
Radhika