Given this array
I would like to return the number 2 for the column number where both rows contain a 1.
I tried
and even
but none of them worked.
Any help would be appreciated
Excel Formula:
{0,1,0,0;0,1,0,0}
I tried
Excel Formula:
XMATCH(1,{0,1,0,0;0,1,0,0},0)
Excel Formula:
XMATCH({1;1},{0,1,0,0;0,1,0,0},0)
Any help would be appreciated