Forum Discussion
Eng_Noah
Mar 10, 2025Copper Contributor
Alternate to SUMIFS array assistance
Hello, everyone. I apologize for asking yet another SUMIFS question, but I haven't been able to find a thread anywhere (so far) that offers a sample similar to what I'm trying to do. I have a...
Patrick2788
Mar 11, 2025Silver Contributor
With dynamic arrays, you could use:
=LET(
category, XLOOKUP(Table2[Item Code], Table1[Item Code], Table1[Category], "None"),
PIVOTBY(Table2[Date], category, Table2[Units], SUM, , 0, , 0)
)