View Full Version : updating fields from linked table


vickiwells
03-05-2001, 12:25 PM
I have two tables. One has Job Number, County, Route. The other has Job Number, Cost. They are linked on the Job Number. On my form, I want to enter a Job number and have the County, Route display automatically from the table. Currently, the County,Rte data isn't displaying until after I close the form and reopen it. How do I make it show up immediately?

[This message has been edited by vickiwells (edited 03-05-2001).]

llkhoutx
03-05-2001, 01:09 PM
Requery after specifying the JobNumber.

vickiwells
03-06-2001, 04:42 AM
How do I do that?

Alexandre
03-08-2001, 05:36 AM
In the afterupdate event of [Jobnumber] on the main form, put: Me.Refresh. Should do it