I am making up a tab with data ordered vertical, and need to index and match with another tab where the data is ordered horizontal.
I have tried to do a tutorial on this, and it seemed do-able. I made an array formula which I think captures all criteria to get the right value, but it gives me #N/A.
I figured I'd use the following three criteria:
- Row name (in this case "XXX")
- Family name (in this case "Amphipoda")
- "Count", as that's the exact row I want to get a result from.
The formula is:
{=INDEX(Family_Distribution!A1:Z271,MATCH(1,(Family_Distribution!C1:X1=all_Results_Habitats!A38)*(Family_Distribution!A1:A271=all_Results_Habitats!B1)*(Family_Distribution!B:B="Count"),0),3)}
The table to perform the indexing and matching with looks like this:
The table where I place the formula looks like this:
What am I doing wrong?

)