J
Jennifer Cali
I'm trying to track the type of positions we have at work and associate that
with the reason the position is vacant. For example, we have cashiers,
managers, and clerks. Each can be vacant for one of four reasons (quit,
fired, on leave, in training). I need to come up with some way to do a count
of each vacancy reason for each position, and then combine that data into one
report. I've tried two alternatives:
1) Created queries (16 of them) that each do a count but now I can't combine
them on to one form.
2) Created a blank form with VB set to run on open that reads:
Dim cntLOA
If chrMgrType = "Cashier" And chrActualCode = "LOA" Then
cashierLOA = cntLOA.Count
End If
End Sub
Unfortunately, that didn't work at all. What would you suggest? I'm at a
loss and need to turn in my project at a 10am conference call tomorrow!
with the reason the position is vacant. For example, we have cashiers,
managers, and clerks. Each can be vacant for one of four reasons (quit,
fired, on leave, in training). I need to come up with some way to do a count
of each vacancy reason for each position, and then combine that data into one
report. I've tried two alternatives:
1) Created queries (16 of them) that each do a count but now I can't combine
them on to one form.
2) Created a blank form with VB set to run on open that reads:
Dim cntLOA
If chrMgrType = "Cashier" And chrActualCode = "LOA" Then
cashierLOA = cntLOA.Count
End If
End Sub
Unfortunately, that didn't work at all. What would you suggest? I'm at a
loss and need to turn in my project at a 10am conference call tomorrow!