I am using INDEX MATCH MATCH to perform a matrix lookup but the following formula returns "#N/A":
=INDEX(Table1,match(Table2[[#Headers],[UK],Table1[Location],0),MATCH([@DATE],Table1[#Headers],0))
Issue seems to be that the dates in my Table1 Header row are being recognised as text. How can I get this to work?
MATCH
has too many arguments – CallumDA]
somewhere. – Scott CranerMATCH
takes only three arguments. But yourMATCH
formulas seem to contain 4 arguments:match(Table2[[#Headers],[UK],Table1[Location],0)
. This shouldn't give you an#N/A
but rather an error when you try to hit enter. – Ralph