Forum Discussion
Communications dashboard for Department
Hi, I am trying to build a communications dashboard for department where I collect topics under various categories for every month. My table looks something like this
table
I would like to display dashboard in a 2*2 matrix format
rows as categories and month wise columns as below
Dashboard
I used matrix object but it is showing either the first or last topic only per month. How can I show all topics per month in Power BI
- Anonymous3 years ago
Hi Mallikarjun_P ,
I suggest you to create a measure by below code.
Combine = VAR _AddCombine = ADDCOLUMNS ( 'Table', "Combine", COMBINEVALUES ( " : ", [Topic], [Speaker] ) ) VAR _CONCATENATE = CONCATENATEX ( _AddCombine, [Combine], " " ) RETURN _CONCATENATEResult is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
1 Reply
- AnonymousNot applicable
Hi Mallikarjun_P ,
I suggest you to create a measure by below code.
Combine = VAR _AddCombine = ADDCOLUMNS ( 'Table', "Combine", COMBINEVALUES ( " : ", [Topic], [Speaker] ) ) VAR _CONCATENATE = CONCATENATEX ( _AddCombine, [Combine], " " ) RETURN _CONCATENATEResult is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.