Hi,
I am working on a data arranged in 3D format, that is, similar data across multiple sheets, and I want to compare data items in a certain cell on all the worksheets that meet certain criteria. For understanding, I have attached a sample workbook for reference.
Nesting IF within MIN condition, I can get the required result if all the data points are on a single worksheet, as in Single Sheet Results worksheet of the attached sample, below is the formula used:
Normal Formula
=MIN(IF($B$4:$B$32=D$1,$C$4:$C$32))
However, if the same data is spread across multiple sheets, the formula fails to generate the result, irrespective if I am using a normal or array formula (example below):
Normal Formula (Result: #REF!):
=MIN(IF(Sheet1:Sheet29!$C$1=D1,Sheet1:Sheet29!$C$2))
Array Formula (Result: #REF!):
{=MIN(IF(Sheet1:Sheet29!$C$1=D1,Sheet1:Sheet29!$C$2))}
How do I fix the formula so that I can compare the data broken across multiple sheets.
Bookmarks