Forum Discussion
melyoni
Oct 21, 2021Copper Contributor
dynamic array excel sum
Hi, I have a list with names and amounts. Each name appears several times, and not all of them have amounts (attached). How (using dynamic array) can I create a list of the total amounts by ...
- Oct 21, 2021
JKPieterse why not using LET()?
=LET(comp,UNIQUE(Table1[Company Name]),totals,SUMIFS(Table1[Total outstanding anount],Table1[Company Name],comp),tab,CHOOSE({1,2},comp,totals),SORT(tab,2,-1))
melyoni
Oct 21, 2021Copper Contributor
JKPieterse
Oct 21, 2021Silver Contributor
Not yet. Perhaps if Microsoft adds matrix functions to join two arrays into a single matrix.