Hi
I have the following data:
| | Total Week | Mon | Tue | Wed | Thu | Fri |
| A | | 5 | 3 | 12 | 1 | 2 |
| B | | 2 | 4 | 10 | 4 | 7 |
| B/A | | 0.4 | 1.333333 | 0.833333 | 4 | 3.5 |
| (A+B) | | 7 | 7 | 22 | 5 | 9 |
| C | | 2 | 9 | 3 | 8 | 0 |
| C/B | | 1 | 2.25 | 0.3 | 2 | 0 |
| C/(A+B) | | 0.285714 | 1.285714 | 0.136364 | 1.6 | 0 |
What I need is the output for the total week column. While we can use formula for adding rows A, B and C for Mon-Fri, that won't give correct output for B/A, (A+B), etc.
Can someone please suggest a way to solve this?
Thanks a lot!!