Forum Discussion
ishaqib
Dec 27, 2022Copper Contributor
Concat column B text so data will look like column G And delete blank cells
Hello everyone, i am trying so hard to solve this problem i used concat function textjoin but didn't get the exact answer what i want, Please help me to get rid our of this, Thanks in Advance
- Dec 27, 2022
Hi ishaqib
A dynamic array alternative if you run 365:
in D4:
=LET( HstackDateString, LAMBDA(Dates,Strings,date, HSTACK(date, TEXTJOIN(" ",,FILTER(Strings,Dates=date))) ), Dates, SCAN(,CHOOSECOLS(Data,1), LAMBDA(seed,x, IF(x <> "", x, seed)) ), DROP( REDUCE("",UNIQUE(Dates), LAMBDA(seed,date, VSTACK(seed,HstackDateString(Dates,CHOOSECOLS(Data,2),date))) ), 1 ) )
OliverScheurich
Dec 27, 2022Gold Contributor
An alternative could be Power Query. In the attached file you can enter data in the blue dynamic table. Then you can click in any cell of the green table with the mouse and right-click and then select refresh.