Is it possible to have a field be automatically populated by a lookup table during data import?
Let's say I'm importing an Excel table with columns A, B, and C that are appended to a DB table, Table 1, with columns A, B, C, and D. A is the PK, C is an FK.
Table 2 is a DB table with columns C and D, where C is the pk and D is information it holds related to C. When I do the table import, I want Table 1 to automatically populate its "D" column based on the record related on "C".
I know I could do this if I were adding one record at a time via a form, but I don't know if its possible with an import. Any ideas?