I already have a control on the form that has the correct answer with this in the control source
=DSum("TrainingHours1","qryMembers")+DSum("TrainingHours2","qryMembers")
Is there anyway to just make the bound control that value?
I tried what you said in the above, but it is not updating my bound control?
This is what I have in the after update of the control performing the math
Me.Text239 = DSum("TrainingHours1", "qryMembers") + DSum("TrainingHours2", "qryMembers")
Thanks for helping!
od~