I have a parent form with many child forms in tabs associated by a Facility ID #. All works fine as far as the Facility ID # updating the subforms but I need to do an odd check. I need on the Tax sub form to to find out what state the facility is in then on the subform put in a text box the criteria of that state for taxes. i.e. If Facility “Y” is in state “CA” I need a text box in “Tax” subform to display “Taxes due November 1 and March 1st” and something different for another state.
I for the life of me cannot get the “State” text box to trigger the “Tax” box in the sub form.
I have tried this:
If me.parent.State = “CA” then
textbox.state.text = “Blah Blah Blah”
End If
But no go….any suggestions??
Dan