Hi! I have two sets of data:
- "Records", which has the dates, when a request has been raised and when completed
- "BankHol and Weekend", which has the list of bank holidays and weekends
I would like to count, how many days did it take to complete the task. I would like to exclude the weekends and bank holidays.
I have tried to use a Join tool: L for "Records" and R for "BankHol and Weekend". I thought about using Left output, but then I realized that it would exclude any tasks raised at the weekend or bank holiday. I cant use True/False for weekends either, as again I dont want to exclude tasks raised at the weekend, but I would like to exclude any bank holidays or weekend from the Open Days calculation. So, if something was raised at 1/11 (Sun) and completed 17/11(Tue), then it should say that it took 12 days to complete the task.
I would appreciate any help.