S
Steve Stad
I have these two 'AfterUpdate' events to calculate Emp_Prod_Alloc1. They
work fine separately (i.e., one or the other in the program) but shouldn't
they also work simultaneously - i.e., shouldn't I be able to have them both
in the program so either one will update the Emp_Prod_Alloc1 percentage.
Private Sub EMP_ANNUAL_HOURS_AfterUpdate()
Emp_Prod_Alloc1 = Emp_Prod_hrs1 / EMP_ANNUAL_HOURS
End Sub
Private Sub Prod1_Hrs_AfterUpdate()
Emp_Prod_Alloc1 = Prod1_Hrs / EMP_ANNUAL_HOURS
End Sub
work fine separately (i.e., one or the other in the program) but shouldn't
they also work simultaneously - i.e., shouldn't I be able to have them both
in the program so either one will update the Emp_Prod_Alloc1 percentage.
Private Sub EMP_ANNUAL_HOURS_AfterUpdate()
Emp_Prod_Alloc1 = Emp_Prod_hrs1 / EMP_ANNUAL_HOURS
End Sub
Private Sub Prod1_Hrs_AfterUpdate()
Emp_Prod_Alloc1 = Prod1_Hrs / EMP_ANNUAL_HOURS
End Sub