I'm currently using the following formula:
=IF(ISERROR(AVERAGE(IZ136,IF136,HL136,GR136,FX136,FD136,EK136,DP136,CV136,CB136,BH136,AN136)),"",AVERAGE(IZ136,IF136,HL136,GR136,FX136,FD136,EK136,DP136,CV136,CB136,BH136,AN136))
I've discovered that I now need it to exclude zero's from the average, if they're present, however, I'm not sure how to do so. I've used the =AVERAGEIF function elsewhere with ">0" to do this, but I can't figure out how to tie it in.
The cells in the above formula are all populated via a macro that pulls cells from another daily spreadsheet. While I could likely have these zero's renamed to null or n/a i'd rather leave the zero's and just find a way to exclude them.
Working on Excel 2010.
=IF(ISERROR(AVERAGE(IZ136,IF136,HL136,GR136,FX136,FD136,EK136,DP136,CV136,CB136,BH136,AN136)),"",AVERAGE(IZ136,IF136,HL136,GR136,FX136,FD136,EK136,DP136,CV136,CB136,BH136,AN136))
I've discovered that I now need it to exclude zero's from the average, if they're present, however, I'm not sure how to do so. I've used the =AVERAGEIF function elsewhere with ">0" to do this, but I can't figure out how to tie it in.
The cells in the above formula are all populated via a macro that pulls cells from another daily spreadsheet. While I could likely have these zero's renamed to null or n/a i'd rather leave the zero's and just find a way to exclude them.
Working on Excel 2010.