Hi,
I have a list of data with employees and their holiday data ranges, which I want to transform into an array with weeks (showing week ending date - Friday) to show days of absence in that week
Is it possible to get it with some easy formula? I tried with a combination of nested Ifs but became too long and was wondering if I may overlooking an easy solution.
Please suggest.
I have a list of data with employees and their holiday data ranges, which I want to transform into an array with weeks (showing week ending date - Friday) to show days of absence in that week
Employee | Start | End | Week Ending --> | 03-May | 10-May | 17-May |
E01 | 30-Apr | 15-May | 4 | 5 | 3 | |
E02 | 08-May | 09-May | 0 | 2 | 0 | |
E03 | 10-May | 13-May | 0 | 1 | 1 | |
E04 | 07-May | 07-May | 0 | 1 | 0 |
Is it possible to get it with some easy formula? I tried with a combination of nested Ifs but became too long and was wondering if I may overlooking an easy solution.
Please suggest.