Forum Discussion
Jpey65
Mar 20, 2024Copper Contributor
Maybe an array formula to transpose records?
I have a table of data. Note that the number of rows per index can vary and the total number of unique index values will vary and not be named TestX: Index Concat Test1 DataValue1 Test1 ...
- Mar 26, 2024https://www.ablebits.com/office-addins-blog/textjoin-function-excel-merge-text-multiple-cells/#:~:text=The%20syntax%20of%20the%20TEXTJOIN,text%20value%20that%20you%20combine.
=TEXTJOIN(", ", TRUE, IF([Index]=[@Index], [Concat], ""))
peiyezhu
Mar 25, 2024Bronze Contributor
- Jpey65Mar 26, 2024Copper Contributorhttps://www.ablebits.com/office-addins-blog/textjoin-function-excel-merge-text-multiple-cells/#:~:text=The%20syntax%20of%20the%20TEXTJOIN,text%20value%20that%20you%20combine.
=TEXTJOIN(", ", TRUE, IF([Index]=[@Index], [Concat], ""))