Hello to All Expert.
I'm new in here and need your help.
I have 2 tables Models and ProdReport. I have form name ProductsReport. I made Dlookup function in Model drop down to seclect model from table Models. I would like to have right Revision in Models table will pick up to insert in field Firmware section in the form ProuctsReport.
Here is my work.
the probem is it just pick the first on table Models only.
I don't know how to fix it.
Plesae help !!!
Thanks in advance.
I put attachment for your review.
Thanks again
I'm new in here and need your help.
I have 2 tables Models and ProdReport. I have form name ProductsReport. I made Dlookup function in Model drop down to seclect model from table Models. I would like to have right Revision in Models table will pick up to insert in field Firmware section in the form ProuctsReport.
Here is my work.
Code:
Private Sub Model_AfterUpdate()
Firmware = DLookup("[Revision]", "[Models]", _
"[ModelID]= [ModelID]")
End Sub
I don't know how to fix it.
Plesae help !!!
Thanks in advance.
I put attachment for your review.
Thanks again
Comment