How do i calculate every 12 weekdays in a spreadsheet?

  • Thread starter Thread starter itoikenza
  • Start date Start date
AI Thread Summary
To calculate every 12 weekdays (Monday to Friday) in a spreadsheet, a specific formula is not available, but it can be achieved through a combination of functions and manual adjustments. The WORKDAY function in Excel is useful as it calculates a date after a specified number of workdays, while also allowing for holidays. To find the 12th weekday after a given date, you can add 16 days (2 days plus 2 weeks) and adjust for additional days if the date falls on a Thursday or Friday. For adding the names of each day, you can input a starting date in one column and use a formula in the adjacent column to add 12 days, ensuring that Excel recognizes the date format. This method allows for easy replication by copying the formula down the column.
itoikenza
Messages
6
Reaction score
0
hi, id like to know how do i calculate every 12 weekdays (mon. to fri.) via a spreadsheet? is there a formula i can use that will always give me the 12th weekday after every date one after another in one column?
 
Last edited:
Computer science news on Phys.org
Unfortunately there is not a specific function for every strange thing people want to do. You need to work it out your self. Sounds do-able but may take some time. You could explore the VB macro editor, assuming you can write a program.

Good luck
 
If it wasn't for holidays it would be pretty easy. Add 16 days (2 days + 2 weeks), then add an additional two days if it is Thursday or Friday. Those holidays pretty much mandate writing a VB macro, however.
 
Take a look at the WORKDAY function (under Date & Time functions). It returns the date serial number of the date before or after a specified number of workdays. It also allows for consideration of user-supplied holidays.
 
thanks... then let's hope lotus symphony has it. as I've taken a liking to it recently...

edit: thanks i figured it all out, just one more, how do i add the name of each day? ex. monday
 
Last edited:
I think this example should work:

1) First column, put in a date, and make sure Excel recognizes it as a date (you can change the formatting later). e.g. 9-Jul-12

2) In the second column, add 12 to the cell with the previous value. e.g. enter "=A1+12" (without quotes) in the new cell, assuming the first cell was A1

You can just add and subtract days from dates in Excel (and you can copy and paste the "previous column + 12" formula to make things really easy).
 
Last edited:
Back
Top