This is what I have and it works on other cells that I don't want averaged.
For a few cells I want to average two different index locations. I tried...
Obviously this didn't work!
Is there a way to average this without making a new column for index with averages already in place (a lot more work)?
Any help would be greatly appreciated.
Code:
=IFERROR(INDEX(Archive!$U$6:$U$10000, SMALL(IF($G$4=Archive!$B$6:$B$10000, ROW(Archive!$B$6:$B$10000)-ROW(Archive!$B$6)+1), ROW(1:1))),"")
For a few cells I want to average two different index locations. I tried...
Code:
=IFERROR(INDEX(AVERAGE(Archive!$U$6:$U$10000,Archive!$V$6:$V$10000), SMALL(IF($G$4=Archive!$B$6:$B$10000, ROW(Archive!$B$6:$B$10000)-ROW(Archive!$B$6)+1), ROW(1:1))),"")
Obviously this didn't work!
Is there a way to average this without making a new column for index with averages already in place (a lot more work)?
Any help would be greatly appreciated.