J
Jacques Steinman
I have just realised that I have a problem with the way I set up my
master/detail form and table.
I used the following code in the "after update" of the column that items are
being selected from in the subform:
Private Sub d_itemid_AfterUpdate()
With Me.d_itemid
If Not IsNull(.Value) Then
Me.d_cost = .Column(3)
Me.d_eskpurch = .Column(5)
End If
End With
End Sub
Problem is, now when costs are updated in the product table it does not
automatically change on the already created entries in the detail table. It
only updates when the items are re-selected in the form.
I'm not very knowledgable wrt Access, so can anyone help me with this.
I don't want to change the tables as there are already thousands of entries
on the various tables in this database
Thanks in advance
master/detail form and table.
I used the following code in the "after update" of the column that items are
being selected from in the subform:
Private Sub d_itemid_AfterUpdate()
With Me.d_itemid
If Not IsNull(.Value) Then
Me.d_cost = .Column(3)
Me.d_eskpurch = .Column(5)
End If
End With
End Sub
Problem is, now when costs are updated in the product table it does not
automatically change on the already created entries in the detail table. It
only updates when the items are re-selected in the form.
I'm not very knowledgable wrt Access, so can anyone help me with this.
I don't want to change the tables as there are already thousands of entries
on the various tables in this database
Thanks in advance