How are you idenifying the "current pay period"?
I set up a quick spreadsheet, as follows (this is what mine would look like
anyway)...
----------------------------------------------------------
Current pay period 3/31/2006
PayPeriod Empl1 Empl2 Empl3
Accrued 30
1/15/2006 1
1/31/2006 2 6
2/15/2006 3
2/28/2006 4
3/15/2006 5
3/31/2006 6
----------------------------------------------------------
Two things are key.
1. The current payperiod date at the top (must match the payperiods in
column A)
2. The formula in the Cell beneath Empl1, which is
=VLOOKUP(D2, $B$7:$C$33, 2, FALSE)*6-SUM(D7

33)
The formula looks at the date at the top to see which period it is, then
compares to the list down the left, and when it finds it, it looks and grabs
the value in the "payperiod" column. It then multiplies that result by 6 (6
hours per pay period) and then subtracts the sum od the time taken in the
rows beneath for that employee (in this case, 03/31/06 = 6, so, 6*6 - 6 = 30)
Hope this helps