Forum Discussion
Matrix table
- 10 months ago
Hi Kay_Kalu
Assuming you want to use a measure in a Matrix visual and the JiraID within the Rows section:
Create a new measure
All Feedback =
ConcatenateX(
'You table name' --table name
,[rework_feedback] --the data you want to show,", " --Seperator in list
, [Comment date] --Column to sort by
,Desc --sort direction
)
Hope this helps ๐
Hi Kay_Kalu
Assuming you want to use a measure in a Matrix visual and the JiraID within the Rows section:
Create a new measure
All Feedback =
ConcatenateX(
'You table name' --table name
,[rework_feedback] --the data you want to show
,", " --Seperator in list
, [Comment date] --Column to sort by
,Desc --sort direction
)
Hope this helps ๐