I would like to calculate the number of days between two dates, excluding the weekends.
I have a humble formula that calculates the number of days as such in a Number type column called DaysTaken as such: HOUR([to]-[from])/24.
Once I get this done I think I will create a new sheet in the spreadsheet with a list of dates PublicHolidays and will not count those if they are in the array between [From] and [To].
I am mostly clueless, if you need more info do not hesitate to comment.
So have a column calculating the number of dates DaysTaken: HOUR([To]-[From])/24, then have a column calculating the number of weekends days between [From] and [To] CalcWE, and then a third column ResultCalc, making the substraction between the values in DaysTaken minus CalcWE?