A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Benefits Eligibility Dates



 
 
Thread Tools Display Modes
  #1  
Old March 12th, 2009, 02:38 PM posted to microsoft.public.excel.newusers
Yvonne
external usenet poster
 
Posts: 78
Default Benefits Eligibility Dates

I am looking for a formula that helps me define 1st of the month or 1st of
the quarter following 30, 90, and 180 days after hire date.

So, I have the hire date in a cell and the next cell I want to see the date
for 1st of the month following 180 days after hire date.

Thanks in advance,
  #2  
Old March 12th, 2009, 02:54 PM posted to microsoft.public.excel.newusers
Luke M
external usenet poster
 
Posts: 2,672
Default Benefits Eligibility Dates

=DATE(YEAR(A2+180),MONTH(A2+180)+1,1)
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Yvonne" wrote:

I am looking for a formula that helps me define 1st of the month or 1st of
the quarter following 30, 90, and 180 days after hire date.

So, I have the hire date in a cell and the next cell I want to see the date
for 1st of the month following 180 days after hire date.

Thanks in advance,

  #3  
Old March 12th, 2009, 03:16 PM posted to microsoft.public.excel.newusers
Yvonne
external usenet poster
 
Posts: 78
Default Benefits Eligibility Dates

Fantastic! Thank you.

Would you mind showing me the formula for 1st of quarter following 180 days
of employment? My 1st of quarter being Jan 1, Apr 1, Jul 1, and Oct 1.

"Luke M" wrote:

=DATE(YEAR(A2+180),MONTH(A2+180)+1,1)
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Yvonne" wrote:

I am looking for a formula that helps me define 1st of the month or 1st of
the quarter following 30, 90, and 180 days after hire date.

So, I have the hire date in a cell and the next cell I want to see the date
for 1st of the month following 180 days after hire date.

Thanks in advance,

  #4  
Old March 12th, 2009, 07:58 PM posted to microsoft.public.excel.newusers
Luke M
external usenet poster
 
Posts: 2,672
Default Benefits Eligibility Dates

Actually, I think there's a small error in my first formula. When the 180 day
falls on the first of a month, it was getting skipped. First formula should
be:
=DATE(YEAR(A2+180),MONTH(A2+180)+IF(DAY(A2+180)=1, 0,1),1)

quarterly formula:
=DATE(YEAR(A2+180),CHOOSE(ROUNDUP((MONTH(A2+180)+I F(DAY(A2+180)=1,0,1)-1)/3,0)+1,1,4,7,10,1),1)
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Yvonne" wrote:

Fantastic! Thank you.

Would you mind showing me the formula for 1st of quarter following 180 days
of employment? My 1st of quarter being Jan 1, Apr 1, Jul 1, and Oct 1.

"Luke M" wrote:

=DATE(YEAR(A2+180),MONTH(A2+180)+1,1)
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Yvonne" wrote:

I am looking for a formula that helps me define 1st of the month or 1st of
the quarter following 30, 90, and 180 days after hire date.

So, I have the hire date in a cell and the next cell I want to see the date
for 1st of the month following 180 days after hire date.

Thanks in advance,

 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


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


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.