Forum Discussion
DavidBridges
Nov 02, 2020Copper Contributor
Summarizing of text data in pivot tables.
My task involves manipulation of gene sequencing data. The description of the task is simplified to focus on key issues. I have text data relating to a single gene that is spread over multiple rows...
- Nov 03, 2020
To do that with PivotTable you need to add data to data model creating it and add measure like
Measure:=CONCATENATEX(Table1,Table1[Data])
and use it as
SergeiBaklan
Nov 03, 2020Diamond Contributor
To do that with PivotTable you need to add data to data model creating it and add measure like
Measure:=CONCATENATEX(Table1,Table1[Data])
and use it as
- DavidBridgesNov 03, 2020Copper ContributorThanks for your help. Not what I would call intuitive but it works.
- SergeiBaklanNov 03, 2020Diamond Contributor
DavidBridges , you are welcome