Semi-Monthly Payroll Dates

Huzz

New Member
Joined
Aug 10, 2020
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am using a formula to calculate the end of a payperiod for semi-monthly payroll dates EX: 01/01/20 to 01/15/20 Paid on 01/25/20 and 01/16/20 to 01/31/20 paid on 02/10/20. I use a calculateion that gives me the end dates of a payperiod but I need one that will give me both the start dates and the end dates.

This is a formula I got off of Mr. Excel: =IF(DAY(M1)<15,DATE(YEAR(M1),MONTH(M1),1),DATE(YEAR(M1),MONTH(M1)+1,0))
This is great for calculating the end date but I need to calculate the start date also and sometimes I need to calculate both start and and dates. Can someone help? I am awful with date formulas.

Thanks in advance,

Huzz
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
your challenge is not clearly defined. Hopefully the following is helpful.

T10_1809a.xlsm
ABC
1StartEnd
2July 23, 2020July 16, 2020July 31, 2020
3July 5, 2020July 1, 2020July 15, 2020
4July 15, 2020July 1, 2020July 15, 2020
5
6d
Cell Formulas
RangeFormula
B2:B4B2=IF(DAY(A2)>15,DATE(YEAR(A2),MONTH(A2),16),EOMONTH(A2,-1)+1)
C2:C4C2=IF(DAY(A2)>15,EOMONTH(A2,0),DATE(YEAR(A2),MONTH(A2),15))
 
Upvote 0
Hi Dave,

Thank you for the super quick response. I think what I need is columns B & C to give me the start and end of the payperiods. for example if I enter a date 5/5/20 I need the result to tell me start 5/1/20 and end 5/15/20. If I enter the date 5/27/20 I need it to Start 5/16/20 and end 5/30/20. The first one you sent B2 seems to work but the second one give me a result of 15 no matter what date I use. I really really appreciate your help!
 
Upvote 0
Ensure that you enter actual dates in Column A.
The XL2BB is converting Column A to text.
Coerce the text to dates or delete the text, change the format to general, and re-enter the dates.
Copy or fill the formulas down.

Cell Formulas
RangeFormula
B1:B5B1=IF(DAY(A1)>15,DATE(YEAR(A1),MONTH(A1),16),EOMONTH(A1,-1)+1)
C1:C5C1=IF(DAY(A1)>15,EOMONTH(A1,0),DATE(YEAR(A1),MONTH(A1),15))
 
Last edited:
Upvote 0
Thank you Awesome Dave.... I can't tell you how helpful this solution is! Have the very best week new friend :)
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,613
Members
449,090
Latest member
vivek chauhan

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