N
Nick
I posted this message earlier and I'm not having too much luck with a
response. If the solution to the code is too difficult, could someone
suggest an alternate method? Thank you very much.
Hello. I am attempting to implement a piece of functionality that will
auto-populate a text box based on the value of another text box. To
explain, I would like to populate the Qty_Inspected field based on the entry
from the Job_Qty field. The table sample_xref is my reference table and
itcontains both of these rows. Here is the code below.
Private Sub Qty_Inspected_Enter()
Me.Qty_Inspected.ControlSource = "SELECT sample_xref.Qty_Inspected FROM
sample_xref WHERE
(((sample_xref.Job_Qty)=[Forms]![QA_Data_Sheet]![Job_Qty]));"
End Sub
However, when I test this it returns a #NAME value in the text box. Could
someone give me some guidance? Any help would be greatly appreciated.
Thanks in advance,
Nick
response. If the solution to the code is too difficult, could someone
suggest an alternate method? Thank you very much.
Hello. I am attempting to implement a piece of functionality that will
auto-populate a text box based on the value of another text box. To
explain, I would like to populate the Qty_Inspected field based on the entry
from the Job_Qty field. The table sample_xref is my reference table and
itcontains both of these rows. Here is the code below.
Private Sub Qty_Inspected_Enter()
Me.Qty_Inspected.ControlSource = "SELECT sample_xref.Qty_Inspected FROM
sample_xref WHERE
(((sample_xref.Job_Qty)=[Forms]![QA_Data_Sheet]![Job_Qty]));"
End Sub
However, when I test this it returns a #NAME value in the text box. Could
someone give me some guidance? Any help would be greatly appreciated.
Thanks in advance,
Nick