Forum Discussion
space83
Helper IV
4 years agomake 6 row become 1 row
Hi all,
This 2 table below actually come from same table in model.
How can I show the 2nd table (workorder) in table 1 as new column in 1 row and separate by comma?
as example it will be something like below:
Count of Workorder | Workorder
6 | 2021025087, 2021025098, 2022002469, 2022005246, 2022007304, 2022007706
5 Replies
- JYAFrequent Visitor
Hi,
you can add a measure of this kind :
Workorder full = CONTATENATEX('WorkOrder','Workorder'[Workorder], ", ")
Of course you need to filter on same key but you have not provided it in your message. - JYAFrequent Visitor
If I reproduce your tables with Article Nr as the key, you should get :
Workorder =CALCULATE(CONCATENATEX(Workorder,Workorder[Workorder],", "),TREATAS(SUMMARIZE('Table Machines','Table Machines'[Article nr.]),Workorder[Article nr.]))Table Machines :Workorder :
- space83
Helper IV
- JYAFrequent Visitor
Ok,
I have created the table with only Article nr. and Workorder :
Planner Combine = DATATABLE("Article nr.",STRING,"Workorder",STRING,{{"MY10290.1","2021025087"},{"MY10290.1","2021025098"},{"MY10290.1","2021025468"},{"MY10290.1","2021025246"},{"MY10290.1","2021025304"},{"MY10290.1","2021025706"},{"MY10950.1","202102000"},{"MY10950.1","2021025001"},{"MY10950.1","2021025002"}})and usingWorkorder list =CONCATENATEX('Planner Combine','Planner Combine'[Workorder],", ")Create table like thisCount of Workorder is distinctcount
I get this :