Hi,
I have a form named Form1 with a subform Form2.
How can I open Form1 from another form and find a specific record in the subform?
This code only filters by customer, and not project like I want it to.
Hope that was not too confusing
Thanks!
I have a form named Form1 with a subform Form2.
How can I open Form1 from another form and find a specific record in the subform?
This code only filters by customer, and not project like I want it to.
Code:
docmd.OpenForm "FrmProject",,,"[CustomerID]=forms![FrmMain].form![CustomerID]"
Hope that was not too confusing

Thanks!