I need a formula to look at a table of data, identify if the result is TRUE then return me the average of all the true values for each row:
I have manually entered the first few results I want to get.
So there are no True results for number 1 so the average is 0
For number 2 there are true results for col F which and col I so I want it to add the blue numbers in row 3 together (5+3) then get the average of 8
How would I do this with a formula?
I used and AND formula to return the TRUE/FALSE result I just cant figure out the next step.
Any help would be greatly appreciated
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | ||
3547 | 3371 | 3034 | 2982 | 3156 | 3207 | 2849 | 3120 | 3388.869 | 3616.027 | 3866.535 | ||
Average for TRUE | Number | 10 | 5 | 2 | 5 | 9 | 6 | 3 | 24 | 9.5 | 24.5 | 17.25 |
0 | 1 | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE |
4 | 2 | FALSE | FALSE | FALSE | TRUE | FALSE | FALSE | TRUE | FALSE | FALSE | FALSE | FALSE |
10 | 3 | FALSE | FALSE | TRUE | FALSE | TRUE | TRUE | FALSE | TRUE | FALSE | FALSE | FALSE |
7.25 | 4 | FALSE | TRUE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | TRUE | FALSE | FALSE |
5 | TRUE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | TRUE | FALSE | |
6 | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | FALSE | TRUE | |
I have manually entered the first few results I want to get.
So there are no True results for number 1 so the average is 0
For number 2 there are true results for col F which and col I so I want it to add the blue numbers in row 3 together (5+3) then get the average of 8
How would I do this with a formula?
I used and AND formula to return the TRUE/FALSE result I just cant figure out the next step.
Any help would be greatly appreciated