On a form, is there a way to make a default to a field that is from a table other than the record source's table?
I am making an insurance claim form whose loss address is "typically", but not always, the address of the insured. The Field's record source is from a table called tblClaim, and the default value is from a table called tblInsured. The record source for the Form is a Select query that includes both tables. I defined the default value as:
=[strInsAddr]
...this is a field from tblInsured. But this does nothing, that is, it offers no default when I create a new claim entry by choosing an Insured's name listed in drop down box whose record source is the tblInsured table. Now, as I type, I realize that a default value would be dependant on knowing who the Insured would be. Is there a way to do this?
I am making an insurance claim form whose loss address is "typically", but not always, the address of the insured. The Field's record source is from a table called tblClaim, and the default value is from a table called tblInsured. The record source for the Form is a Select query that includes both tables. I defined the default value as:
=[strInsAddr]
...this is a field from tblInsured. But this does nothing, that is, it offers no default when I create a new claim entry by choosing an Insured's name listed in drop down box whose record source is the tblInsured table. Now, as I type, I realize that a default value would be dependant on knowing who the Insured would be. Is there a way to do this?