I have a table which consists of names (1st column) avarageifs (2-6 columns) and average formulas (7 column).
Averageifs formula is taking the name to average values for each name:
=IFERROR(AVERAGEIFS(Grades!B:B,Grades!$A:$A,Rankings!$B14),"N/A")
"Total" average formula is:
=IFERROR(AVERAGE(C14:G14),0)
Then I am trying to sort it by "total" average, formulas are mixing up and referring to different rows.
But it should refer to the same row. What happens after sorting and how can I fix it?
Grades
- is another tab in this workbook, andRankings
is a tab there the table is located. – Sergey RyabovRankings
tab there is a table we are talking about and formula is referring to the name in the same row. InGrades
tab in column "A" there are few lists of the same names and next to names there are columns containing rankings I am transferring. BasicallyGrades
is a data-sheet. – Sergey Ryabov