A
Afrosheen via AccessMonster.com
Thanks again for reading my post.
What I'm trying to do is to keep a running total.
Because of the cut backs everyone is facing my employer wants us to take a
furlough. So, what I'm trying to do is to find a way where I can enter the
amount of time used then deduct it from the time given/balance
I have 3 fields I'm using
Fhours, Used, Balance.
The Fhours is a one time entry. So I guess you'd have to subtract the used
from the balance. The problem is that it doesn't. What happens is that it
just takes the used and then subtracts from the current balance not the
balance from the previous record.
This is what I have on the Afterupdate() on the used:
If Earned > 0 Then
Bal = Earned - Used
Else
Bal = Used - Bal
End If
Thanks for your help.
What I'm trying to do is to keep a running total.
Because of the cut backs everyone is facing my employer wants us to take a
furlough. So, what I'm trying to do is to find a way where I can enter the
amount of time used then deduct it from the time given/balance
I have 3 fields I'm using
Fhours, Used, Balance.
The Fhours is a one time entry. So I guess you'd have to subtract the used
from the balance. The problem is that it doesn't. What happens is that it
just takes the used and then subtracts from the current balance not the
balance from the previous record.
This is what I have on the Afterupdate() on the used:
If Earned > 0 Then
Bal = Earned - Used
Else
Bal = Used - Bal
End If
Thanks for your help.