i tried to include SUMIFS with single array and it works fine:
=SUM(SUMIFS(Sheet3!H:H,Sheet3!G:G,"X",Sheet3!E:E,"SA",Sheet3!D:D,{"A","B","C"}))
When I try to include a second array as below it gives me only the first/last item from {"X","Y","Z"}
=SUM(SUMIFS(Sheet3!H:H,Sheet3!G:G,{"X","Y","Z"},Sheet3!E:E,"SA",Sheet3!D:D,{"A","B","C"}))
The only workaround I could figure out is by separating the formula in 3 chunks (each item in {"X","Y","Z"}).
Is there any other work around?
=SUM(SUMIFS(Sheet3!H:H,Sheet3!G:G,"X",Sheet3!E:E,"SA",Sheet3!D:D,{"A","B","C"}))
When I try to include a second array as below it gives me only the first/last item from {"X","Y","Z"}
=SUM(SUMIFS(Sheet3!H:H,Sheet3!G:G,{"X","Y","Z"},Sheet3!E:E,"SA",Sheet3!D:D,{"A","B","C"}))
The only workaround I could figure out is by separating the formula in 3 chunks (each item in {"X","Y","Z"}).
Is there any other work around?