Forum Discussion
Karl-D
3 years agoHelper I
Build Order Summary using CONCATENATEX?
I have an "Orders" table which shows order lines. I do not have an Order Header table. Each [OrderNumber] may have multiple rows in the "Orders" table, representing different items from differe...
- 3 years ago
Karl-D , if tables are already joined , try like
DeptListMeasure = CONCATENATEX(values('Department'),'Department'[DepartmentDesc],",")
or like
DeptListMeasure = CONCATENATEX( Summarize('Orders','Department'[DepartmentDesc]),[DepartmentDesc] ,",")
Karl-D
3 years agoHelper I
amitchandak to the rescue again! Thanks so much. The second one with the Summarize is what I needed.
DeptListMeasure = CONCATENATEX( Summarize('Orders','Department'[DepartmentDesc]),[DepartmentDesc] ,",")