Calculate remaining pay periods based on today's date

hkelly

New Member
Joined
Aug 11, 2008
Messages
5
Hello all.

I need a formula that will calculate the number of remaining pay periods based on today. I have 26 pay periods in a year (bi-weekly).

Any suggestions?

Thanks for any help.

Heather
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Welcome to the board.

Try:

=26-INT((WEEKNUM(TODAY())+1)/2)

or similar.

Note that WEEKNUM requires the analysis toolpak.
 
Upvote 0
I used the search function and found this! It is almost what I need as well, but I need to force the date from "today" to 7/1/09 as the reference point against their hire date. That way I can determine how many pay periods are at rate #1 and how many pay periods are at rate #2 given they get an annual increase on their review date.

Employee "A" may have a review date of 4/1/09 giving them 20 pay periods of rate $X.XX and 6 pay periods of rate $X.XX before 7/1/10.

I tried =DATEDIF("7/1/09",K71,"m") with review date being the K71.

7/1/09 is our fiscal year start.

Any suggestions?
 
Last edited:
Upvote 0
What am I doing wrong? Row 2 for instance shows 2 months. I need it to say X number of pay periods remaining until 7/1/2010. I have 5 pay periods for July & August that should be pay rate 1 then 21 pay periods at pay rate 2.
Book3
ABCDEF
1ReviewDatePP#1#1RatePP#2#2Rate09-10AnnualSalary
29/1/2009212.332418.3652,113.60
31/1/2010615.692016.5647,638.08
410/1/2009314.202315.5544,828.00
53/1/2009#NUM!11.79#NUM!17.25#NUM!
67/1/200908.662615.6945,689.28
712/1/20101724.58927.5674,580.80
85/1/20091417.891219.6554,461.12
Sheet1
 
Last edited:
Upvote 0
I think I am getting closer!

If I take the formula above and replace it with:

=26-INT((WEEKNUM(("7/1/2009"))+1)/2)+14 This formula will equal 26 (which for me means 26 pay periods)

What do I need to do to determine the pay period difference between that result of 26 and the next review date such as 4/1/09? I know the result is 6. There are 6 pay periods between 4/1/09 and 7/1/09, but I don't know how to add that date into the above formula. Or really the cell that contains the date to give me the difference expressed in pay periods remaining.
 
Upvote 0
Hello dr427,

When exactly are the pay periods, you didn't say?

Shouldn't all the dates in A2:A8 be between 1st July 2009 and 30th June 2010?

Perhaps it would be simple to just list all the pay dates. I put the first pay date in J2 and then used this formula in J3

=J2+14

to get the next pay date.....and then copied this down to J27 to get all pay dates in the year. For next year you can just change the date in J2 to get all the dates....

Then in B2 you can use this formula copied down

=COUNTIF(J$2:J$27,"<"&A2)

and similar in D2

=COUNTIF(J$2:J$27,">="&A2)

Then in F2

=(B2*C2+D2*E2)*112

see below
Book1
ABCDEFGHIJK
1ReviewDatePP#1#1RatePP#2#2RateSalaryPeriodDate
201-Sep-20095$12.3321$18.36$50,087.52103-Jul-2009
301-Jan-201013$15.6913$16.56$46,956.00217-Jul-2009
401-Oct-20097$14.2019$15.55$44,223.20331-Jul-2009
501-Mar-201018$11.798$17.25$39,224.64414-Aug-2009
601-Jul-20090$8.6626$15.69$45,689.28528-Aug-2009
701-Dec-200911$24.5815$27.56$76,583.36611-Sep-2009
801-May-201022$17.894$19.65$52,884.16725-Sep-2009
9809-Oct-2009
10923-Oct-2009
111006-Nov-2009
121120-Nov-2009
131204-Dec-2009
141318-Dec-2009
151401-Jan-2010
161515-Jan-2010
Sheet2
 
Upvote 0
Thank you so much! I will play around with your suggestion and let you know if it worked!
 
Upvote 0

Forum statistics

Threads
1,215,002
Messages
6,122,652
Members
449,092
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top