Forum Discussion
LousQuinn
Dec 09, 2022Tin Contributor
Group tranposed data
Hello, I'm having difficulty 'grouping' the transposed data - so as attached, if the account in colum A matches/is the same, rather than creating separate transposed colums, all amounts will appe...
LousQuinn
Dec 12, 2022Tin Contributor
Thanks for both you answers
Lorenzo
Dec 12, 2022Silver Contributor
You're welcome. If any of them does what you expect please mark it as solution to help those who search this site - Thanks & nice day...
- LousQuinnDec 12, 2022Tin ContributorOk will test both solutions asap. thanks again
- LorenzoDec 27, 2022Silver Contributor
Another 365 option
in I9:
=LET( JoinAmts, LAMBDA(Amounts,Accounts,account, TEXTJOIN(";",,FILTER(Amounts,Accounts=account)) ), Accts, TRANSPOSE(UNIQUE(TBL_Source[Account])), StackedValues, REDUCE("",Accts, LAMBDA(seed,acct, VSTACK(seed,JoinAmts(TBL_Source[Amount],TBL_Source[Account],acct))) ), VSTACK( Accts, TRANSPOSE(IFNA(NUMBERVALUE(TEXTSPLIT(TEXTJOIN("|",TRUE,StackedValues),";","|")),"")) ) )