the problem is simple, I have two dates and count all days between them by using datediff() function.
E.g.: datediff('23/08/2023', '30/08/2023') returns 7, but it should return 5, because 26-27/08/2023 are weekend days.
Do You know any function or have a practical solution how to count it? The simpler, the better. Thank You in advance.
This seems to be a pretty good solution.
In your case that would result in:
When executing this resulted in 6 weekdays which seems to be correct: 23, 24, 25, 28, 29, 30.