The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi @swapnareddy ,
According to your description, here's my solution.
Table 2 =
UNION (
SUMMARIZE ( 'Table', 'Table'[Column2], 'Table'[Column3], 'Table'[Column1] ),
ADDCOLUMNS (
SUMMARIZE ( 'Table', [Column2], [Column3] ),
"Column1",
CONCATENATEX (
FILTER (
ALL ( 'Table' ),
'Table'[Column2] = EARLIER ( 'Table'[Column2] )
&& 'Table'[Column3] = EARLIER ( 'Table'[Column3] )
),
[Column1]
)
)
)
Get the result.
In this way, rows are not in the same order as expected. Or you can just create a measure.
Column1' =
CONCATENATEX (
FILTER (
ALL ( 'Table' ),
'Table'[Column2] = MAX ( 'Table'[Column2] )
&& 'Table'[Column3] = MAX ( 'Table'[Column3] )
),
[Column1]
)
Put two visuals together.
I attach the sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @swapnareddy ,
According to your description, here's my solution.
Table 2 =
UNION (
SUMMARIZE ( 'Table', 'Table'[Column2], 'Table'[Column3], 'Table'[Column1] ),
ADDCOLUMNS (
SUMMARIZE ( 'Table', [Column2], [Column3] ),
"Column1",
CONCATENATEX (
FILTER (
ALL ( 'Table' ),
'Table'[Column2] = EARLIER ( 'Table'[Column2] )
&& 'Table'[Column3] = EARLIER ( 'Table'[Column3] )
),
[Column1]
)
)
)
Get the result.
In this way, rows are not in the same order as expected. Or you can just create a measure.
Column1' =
CONCATENATEX (
FILTER (
ALL ( 'Table' ),
'Table'[Column2] = MAX ( 'Table'[Column2] )
&& 'Table'[Column3] = MAX ( 'Table'[Column3] )
),
[Column1]
)
Put two visuals together.
I attach the sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@swapnareddy , New table
Union( summarize(Table, [Column2],[colum1], [column1]),
summarize(Table, [Column2],[colum3], "column3", concatenatex(Table, [Column1]))
)
User | Count |
---|---|
26 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
30 | |
14 | |
12 | |
12 | |
7 |