I have a field (Total) that has a computed value.
This is the control source: =[FrmSupplierQuote].[Form].[TotalSupplierCost]
This field is updating just fine when the subform is updated
When this field updates I wish to execute the subroutine that updates the field FinalPrice:
Public Sub Update_FinalPrice()
Me.FinalPrice = Round((Me.Total * (1 + Me.Markup)), 2)
End Sub
I've tried the events On Change, After Update and On Dirty with no luck. I'm wondering if I've taken the correct approach here and I'm open to suggestions as to how to make this work. I was wondering if I should be driving it from the subForm. I have another form like this that has two subForms.