How can I update a field in a subform table from the Main table?. I have a main form Orders with a ComboBox ReceivingCompanyID; and in the afterupdate event procedure of ReceivingCompanyID I want to update the table of the subform. I have the following code which gives me an error.
The error is :
" You cann't assign a value to this object".
Any suggestions on how to implement this correctly?
Code:
Forms![Orders]![Order Details]![RecipientID] = Me.ReceivingCompanyID
The error is :
" You cann't assign a value to this object".
Any suggestions on how to implement this correctly?