PLease help me to sum up the value of multiple columns based on value of the pther columns.
I tried to use SUMIFS but its not working
User ID | Is Primary | Total - X | Completed | Completion % | Is Primary | Total - Y | Completed | Completion % | Is Primary | Total - Z | Completed | Completion % | Primary Total | Primary completed | Primary Completion % |
12345 | Yes | 10 | 5 | 50 | Yes | 5 | 5 | 100 | No | 2 | 2 | 100 | 15 | 10 | 0.666667 |
23456 | Yes | 10 | 0 | 0 | No | 5 | 0 | 0 | Yes | 2 | 0 | 0 | 12 | 2 | 0.166667 |
34567 | Yes | 10 | 0 | 0 | Yes | 5 | 0 | 0 | Yes | 2 | 0 | 0 | 17 | 7 | 0.411765 |
If the Is Primary Column is "Yes" then I need to add the Value accordingly.