I am attempting to get what amounts to an 'average of averages' across 12 (monthly) worksheets. But some of the averages are (as yet) errors, for there is no data (yet).
I begin here with some partial formula, and you can see where it's going:
=(IF(ISERROR(JAN!B44),0,JAN!B44)+IF(ISERROR(FEB!B44),0,FEB!B44)+IF(ISERROR(MAR!B44),0,MAR!B44)+...IF(ISERROR(SEP!B44),0,SEP!B44)+IF(ISERROR(OCT!B44),0,OCT!B44)).
Clearly this formula will run into the length of characters limitation if I keep going! But in the example above, the value in OCT!B44 is currently an error value (#DIV/0!), which is why the error trapping above. I should say that the formulae that give each monthly average are themselves so long as to prevent error trapping, otherwise I would fix the problem on each worksheet.
I think what I'm looking for is something like SUMIF, where I can specify a range across 12 worksheets--might that be possible?
I begin here with some partial formula, and you can see where it's going:
=(IF(ISERROR(JAN!B44),0,JAN!B44)+IF(ISERROR(FEB!B44),0,FEB!B44)+IF(ISERROR(MAR!B44),0,MAR!B44)+...IF(ISERROR(SEP!B44),0,SEP!B44)+IF(ISERROR(OCT!B44),0,OCT!B44)).
Clearly this formula will run into the length of characters limitation if I keep going! But in the example above, the value in OCT!B44 is currently an error value (#DIV/0!), which is why the error trapping above. I should say that the formulae that give each monthly average are themselves so long as to prevent error trapping, otherwise I would fix the problem on each worksheet.
I think what I'm looking for is something like SUMIF, where I can specify a range across 12 worksheets--might that be possible?