Hi, with the below formula I get a spilled range in 2 columns and 3 rows, I want to get total of the 3 values in 4th row, as example below. Thanks
Col A Col B
AAA 123
BBB 234
CCC 345
Total 702
=LET(pm,SORT(UNIQUE(Table3[Payment Mode]),1,1),
amt,SUMIFS(Table3[Amount],Table3[Payment Mode],pm),
CHOOSE({1,2},pm,amt))
Col A Col B
AAA 123
BBB 234
CCC 345
Total 702
=LET(pm,SORT(UNIQUE(Table3[Payment Mode]),1,1),
amt,SUMIFS(Table3[Amount],Table3[Payment Mode],pm),
CHOOSE({1,2},pm,amt))