I have several formulas used to calculate the average of a bunch of data points. Currently, I have to have a sub-section on a spare worksheet that then pulls those results back into the main sheet. I'm hoping that there is a way to bypass this, I know alot of people on this forum are hellaciously good at fixing things (as my more recent thread found..).
Current formula:
All resulting values then get put into a basic =average(result:cells).
Is there any way I can do the above in a single formula?
Current formula:
Code:
=AVERAGE(IF(ISNUMBER(SEARCH("*PIEA*",PIESHEET!$E:$E)),IF(ISNUMBER(PIESHEET!$L:$L),PIESHEET!$L:$L,""),">0")
=AVERAGE(IF(ISNUMBER(SEARCH("*PIEB*",PIESHEET!$E:$E)),IF(ISNUMBER(PIESHEET!$L:$L),PIESHEET!$L:$L,""),">0")
=AVERAGE(IF(ISNUMBER(SEARCH("*PIEC*",PIESHEET!$E:$E)),IF(ISNUMBER(PIESHEET!$L:$L),PIESHEET!$L:$L,""),">0")
All resulting values then get put into a basic =average(result:cells).
Is there any way I can do the above in a single formula?