R
Rpettis31
I have a subform that basically tallies and order
Part - Qty - $ per each - total
I have after update code that will update the total.
I have a text box that is set to sum the total column.
I had code to pass the value of this to the main form yet it the only way it
will work is if the values are rentered or a new record added to the sub form.
Here is my code
' calculate the dollar value of the components
Me.TotalCost = Me.Qty * Me.CostPerEa
With Forms!frmRWForm
!txtMtlsCost = Me.txtSumCost
End With
End Sub
Part - Qty - $ per each - total
I have after update code that will update the total.
I have a text box that is set to sum the total column.
I had code to pass the value of this to the main form yet it the only way it
will work is if the values are rentered or a new record added to the sub form.
Here is my code
' calculate the dollar value of the components
Me.TotalCost = Me.Qty * Me.CostPerEa
With Forms!frmRWForm
!txtMtlsCost = Me.txtSumCost
End With
End Sub