???
????
Can you explain what you are needed to do?
Why not bind combo7 to AcctNnum?
JR
The form you provided is bound to the table T_Payment, so by setting the Control Source of combo7 to AcctNnum it is bound to table and whenever you change the value og your combo it will store the value into T_Payment.
JR
No, use combo7 rowsource as it is and just bind it to T_payment.
JR
Look at my last post and just do that aka.
Control Source -> AcctNnum
And nothing more.
JR
On my Form (F_Pay) which was created from table (T_Payments) uses the unbound field (Case MRNto lookup the AcctNum of T_Patient.
Once I select a Case MRN: from the combo box, I would like that value to be written into the AcctNnum field of T_Payments along with the associated entered fields of the form as 1 record.
OK normal lookup.
??? dosen't compute. You say that you look in T_Patient for matching AcctNum that is already in T_Payments?? and you want to write back to T_Payments the same valueFor that's what I read.
If your intent is to add records in T_Payments which reletes to T_Patient, then perhaps a Form with subform is a better way to do this.
Base the mainform on table patient and add a subform on to it that's based on T_Payments. You link them together by AcctNnum, that way you keep refrential integrety and don't get orphan records in T_Payments.
Hope this guide you further.
JR![]()