Skip to content
Advertisement

get work days function to return whole number on sunday

The function number_of_days(start_date, end_date) should calculate how manny work days are in between start_date and end_date. It wroks for whatever start_date as long it is not sunday.

Calculation has 3 steps:

  1. take number of days before whole week (whole week can be 0 for small range dates like 21th – 24th)

  2. then it adds whole weeks

  3. takes all days that are leftover after whole week and add them up.

i need 2nd step to to produce whole number like 0, 5, 10, instead i get 0,7142857142857142857142857142857142857 on this example, because start_date parameter is sunday.

I could use ROUND() to solve it, but perhaps there is a better way?

Advertisement

Answer

You’re just making this too complicated… First of all, it’s better to work with in ISO weeks: it starts from Monday.

So you can easily get first day of ISO week using trunc(dt, 'IW'). For example, 19th of November is Friday and we can easily get the first day of this week using trunc(date'2021-11-19','IW'):

So 2021-11-15 is Monday.

Now let’s imagine we got some dates:

We can easily get number of working days in full weeks (count_full_weeks * 5/7), so let’s exclude them:

Then, let’s transform it graphically, since we know that the number of remaining days will always be less than 7 days (less than a week) and the first day will be one of the first 7 days:

Let’s replace Mo,Tu,We… with their numbers:

Since we know that number of days in this partial week can’t be 7, we know that the latest end will be:

Now let’s replace numbers of the second week to 7-13:

Now we can understand that we need to check just for 5th and 6th days, ie to check if our period contains 5 and 6.

So it will be like this (I’ve detailed as much as possible):

I did it with a lot of sub-steps and intermediate calculations and variables, just to make it more clear. Obviously, you can make it much shorter, for example:

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement