I am trying to help develop a grading scale which determines the overall grade for a student with 5 assignments entered in A (4) to F (0) with no plusses or minuses. I would like to see each possible combination with no repeats (i.e. A, A, A, A, F is treated the same as F, A, A, A, A). It would be preferable to have them in separate columns so that I can see their averages.
Assign. 1 | Assign. 2 | Assign. 3 | Assign. 4 | Assign. 5 | Average |
---|---|---|---|---|---|
4 | 4 | 4 | 4 | 4 | 4 |
4 | 4 | 4 | 4 | 3 | 3.8 |
4 | 4 | 4 | 4 | 2 | 3.6 |
4 | 4 | 4 | 4 | 1 | 3.4 |
4 | 4 | 4 | 4 | 0 | 3.2 |
With the above table to expand and include all possible combinations of the assignment grades.
I have tried using the array formula with the permut function: =ARRAYFORMULA(PERMUT(5,5)) but it returns the number of combinations but won't print them. Is there a way to do this?