I am working with INDEX MATCH formula with multiple criteria in a Excel Table. My array formula looks like
{=INDEX(Table1[Column3],MATCH(1,(Table1[Column1]=value1)*(Table1[Column2]=value2), 0))}
The formula works fine if table has more than one row. The formula fails and returns #N/A when table has 1 row. Is there any workaround for table with single row?
My Table is pulling data through database using power query. Hence number of rows are dynamic. Table is as follows
Column1 | Column2 | Column3
-------------------------------
value1 | value2 | value3
=INDEX(Table1[Column3],MATCH(1,INDEX((Table1[Column1]="Value1")*(Table1[Column2]="Value2"),),0))INDEXinsideMATCHis what was required. Please add this comment as answer so that it can be useful.