PC Review


Reply
Thread Tools Rate Thread

Calculate Accrued Time

 
 
Heather
Guest
Posts: n/a
 
      28th Apr 2010
Good morning! I have searched for this, and couldn't find anything that
satisfied what I'm looking for. I'm hoping to find some help with this. I
need a formula that will auto calculate time accrued (PTO) at a rate of 5.85
hours every 2 weeks. I know employee start dates, and have the current
balance of PTO, just need to be able to add to it w/ out having to go through
our payroll system & manually update for each person. Thank you!
--
~*Heather*~
 
Reply With Quote
 
 
 
 
Bob Phillips
Guest
Posts: n/a
 
      28th Apr 2010
What constitutes 2 weeks (14 days, 10 working days)? What happens if they
started 2 weeks and 3 days ago?

--

HTH

Bob

"Heather" <(E-Mail Removed)> wrote in message
news:56704BA0-B17D-41D2-A180-(E-Mail Removed)...
> Good morning! I have searched for this, and couldn't find anything that
> satisfied what I'm looking for. I'm hoping to find some help with this. I
> need a formula that will auto calculate time accrued (PTO) at a rate of
> 5.85
> hours every 2 weeks. I know employee start dates, and have the current
> balance of PTO, just need to be able to add to it w/ out having to go
> through
> our payroll system & manually update for each person. Thank you!
> --
> ~*Heather*~



 
Reply With Quote
 
Heather
Guest
Posts: n/a
 
      28th Apr 2010
Sorry, it accrues every pay-period (14 days). Also, I don't need to start at
the beginning of their hire date. What I'm trying to do is figure out a
formula that will take the current balance and add 5.85 hours for a new
current balance every 14 days, also deducting any time used. I know how to
add them up, just don't know how to set a formula to auto-calculate every 14
days. If it helps, our current columns are: Employee name; Accrual Rate (5.85
hrs / 14 days); Previous Balance; PTO Used this pay period; Current Balance.
I'm not against having additional columns if needed. We just started this
report, and would prefer not having to access each timecard & manually enter
PTO accrued up to current date. I just tried out "previous
balance+accrual-taken=current balance" but I'm looking for something that the
previous balance would not have to be updated each time. Thanks.
--
~*Heather*~


"Bob Phillips" wrote:

> What constitutes 2 weeks (14 days, 10 working days)? What happens if they
> started 2 weeks and 3 days ago?
>
> --
>
> HTH
>
> Bob
>
> "Heather" <(E-Mail Removed)> wrote in message
> news:56704BA0-B17D-41D2-A180-(E-Mail Removed)...
> > Good morning! I have searched for this, and couldn't find anything that
> > satisfied what I'm looking for. I'm hoping to find some help with this. I
> > need a formula that will auto calculate time accrued (PTO) at a rate of
> > 5.85
> > hours every 2 weeks. I know employee start dates, and have the current
> > balance of PTO, just need to be able to add to it w/ out having to go
> > through
> > our payroll system & manually update for each person. Thank you!
> > --
> > ~*Heather*~

>
>
> .
>

 
Reply With Quote
 
Bob Phillips
Guest
Posts: n/a
 
      28th Apr 2010
I personally would ditch the whole process of accruing, and just have a
calculation based upon their start date. If you don't, you will have to have
some code on workbook open, hold the last update date somewhere, and check
if today is greater than that date + 14, if so, increment all of the accrued
values by 5.85, then update that last update date. The previous balance
would be just accrued -5.85 would it not?

--

HTH

Bob

"Heather" <(E-Mail Removed)> wrote in message
news:FF82E624-D208-4335-9CB9-(E-Mail Removed)...
> Sorry, it accrues every pay-period (14 days). Also, I don't need to start
> at
> the beginning of their hire date. What I'm trying to do is figure out a
> formula that will take the current balance and add 5.85 hours for a new
> current balance every 14 days, also deducting any time used. I know how to
> add them up, just don't know how to set a formula to auto-calculate every
> 14
> days. If it helps, our current columns are: Employee name; Accrual Rate
> (5.85
> hrs / 14 days); Previous Balance; PTO Used this pay period; Current
> Balance.
> I'm not against having additional columns if needed. We just started this
> report, and would prefer not having to access each timecard & manually
> enter
> PTO accrued up to current date. I just tried out "previous
> balance+accrual-taken=current balance" but I'm looking for something that
> the
> previous balance would not have to be updated each time. Thanks.
> --
> ~*Heather*~
>
>
> "Bob Phillips" wrote:
>
>> What constitutes 2 weeks (14 days, 10 working days)? What happens if they
>> started 2 weeks and 3 days ago?
>>
>> --
>>
>> HTH
>>
>> Bob
>>
>> "Heather" <(E-Mail Removed)> wrote in message
>> news:56704BA0-B17D-41D2-A180-(E-Mail Removed)...
>> > Good morning! I have searched for this, and couldn't find anything that
>> > satisfied what I'm looking for. I'm hoping to find some help with this.
>> > I
>> > need a formula that will auto calculate time accrued (PTO) at a rate of
>> > 5.85
>> > hours every 2 weeks. I know employee start dates, and have the current
>> > balance of PTO, just need to be able to add to it w/ out having to go
>> > through
>> > our payroll system & manually update for each person. Thank you!
>> > --
>> > ~*Heather*~

>>
>>
>> .
>>



 
Reply With Quote
 
Heather
Guest
Posts: n/a
 
      28th Apr 2010
Thanks everyone, but I found my own solution. The formula I'm using follows:

In A1 (date): 1/1/2010
In B1 (Balance- will be hidden): 0
In C1 (PTO Used): 0
In D2 (Balance- shown): 0

In A2: =DATE(YEAR(A1),MONTH(A1),DAY(A1)+14)
Copied down.
In B2: =D1+5.85
Copied down.
In D2: =B1-C1
Copied down.

Example:
1/8/2010 41.78 0 41.78
1/22/2010 47.63 5 42.63
--
~*Heather*~


"Heather" wrote:

> Sorry, it accrues every pay-period (14 days). Also, I don't need to start at
> the beginning of their hire date. What I'm trying to do is figure out a
> formula that will take the current balance and add 5.85 hours for a new
> current balance every 14 days, also deducting any time used. I know how to
> add them up, just don't know how to set a formula to auto-calculate every 14
> days. If it helps, our current columns are: Employee name; Accrual Rate (5.85
> hrs / 14 days); Previous Balance; PTO Used this pay period; Current Balance.
> I'm not against having additional columns if needed. We just started this
> report, and would prefer not having to access each timecard & manually enter
> PTO accrued up to current date. I just tried out "previous
> balance+accrual-taken=current balance" but I'm looking for something that the
> previous balance would not have to be updated each time. Thanks.
> --
> ~*Heather*~
>
>
> "Bob Phillips" wrote:
>
> > What constitutes 2 weeks (14 days, 10 working days)? What happens if they
> > started 2 weeks and 3 days ago?
> >
> > --
> >
> > HTH
> >
> > Bob
> >
> > "Heather" <(E-Mail Removed)> wrote in message
> > news:56704BA0-B17D-41D2-A180-(E-Mail Removed)...
> > > Good morning! I have searched for this, and couldn't find anything that
> > > satisfied what I'm looking for. I'm hoping to find some help with this. I
> > > need a formula that will auto calculate time accrued (PTO) at a rate of
> > > 5.85
> > > hours every 2 weeks. I know employee start dates, and have the current
> > > balance of PTO, just need to be able to add to it w/ out having to go
> > > through
> > > our payroll system & manually update for each person. Thank you!
> > > --
> > > ~*Heather*~

> >
> >
> > .
> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Calculate Accrued Leave Time MargaretA Microsoft Excel New Users 2 31st Oct 2008 03:55 PM
personal hrs is accrued @ 4 hrs./month, need formula to calculate Shawn Microsoft Excel Worksheet Functions 1 22nd Jul 2008 09:26 PM
Vacation Accrued /Sick Days Accrued =?Utf-8?B?Ty4uLi4=?= Microsoft Excel Programming 2 3rd Oct 2007 05:34 PM
And another thing - time accrued calculation Django Cat Microsoft Excel Misc 4 25th May 2007 05:09 PM
What is the function that will calculate accrued hours at interva. =?Utf-8?B?Um9zZQ==?= Microsoft Excel Worksheet Functions 0 5th Oct 2004 12:55 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:06 PM.