I have actually tried something similar (but with not much success, so this
could help us both out). There is some code that you might be able to enter
that is a SELECT CASE statement where that "TaxDeptNotified" field will be
filled if the condition required is met in the case statement (anyone
correct me if I am wrong). As long as it is on the same form, you should be
okay by using something like this (again, someone correct me as I have not
had much success with the SELECT CASE statement yet):
If Me!TaxForm = (what ever the value is) Then
Me!TaxDeptNotified = "Yes"
ElseIf Me!TaxForm = (Whatever secondary value should be) Then
Me!TaxDeptNotified = "No"
Else
Me!TaxDeptNotified = "N/A"
End If
If someone can translate this into a SELECT CASE statement, that might help
Karin out better.
Where it can help me out is if someone can help me point my statement to the
mainform from a subform. Essentially, the AfterUpdate event will trigger
the code and force data from the subform to the mainform if the conditions
are met.
Jason Lopez
"Karin" <(E-Mail Removed)> wrote in message
news:EAF7665E-0BFF-483A-A3E7-(E-Mail Removed)...
> Hi, I have two tables "Client" and "Projects" that are related by ID
> number.
> In the Client table there is a field named "TaxForm".
>
> In the Projects table, I have a field named "TaxDeptNotified", which is a
> text field. Normally I would create a combo box on a form to select the
> answer from a table that contains the values: Yes, No, NA.
>
> Is it possible to have the Project\TaxDeptNotified field default to a
> certain value (NA)based on the value in the Client\TaxForm field? (If the
> Client Form is NOT a 990, the Answer s/b NA.)
>
> TIA!