Forum Discussion
Scotty485
May 13, 2022Copper Contributor
AverageIF across multiple worksheets
Im trying to Average the same cell across multiple worksheets, but ignore zeros. My formula is - =AVERAGEIF('Calculation Tab 1:Calculation Tab 53'!N38,">0") I Get the return of - #VALUE! is the...
SergeiBaklan
May 14, 2022Diamond Contributor
Workaround could be with the technique explained here Excel formula: 3D SUMIF for multiple worksheets | Exceljet
Something like
=SUM(Sheet1:Sheet5!A1)/SUMPRODUCT( COUNTIF( INDIRECT("'"&sheets&"'!"&"A1"), ">0"))
where sheets is the name of such range