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 September 15. Request your voucher.
Dear ALL,
For a report, I want to achieve concat with the count. Please provide a solution on DAX measure for power pivot.
Result/Output
Name | RegionCount |
Anil | A1(2),A2(2) |
Sunil | A1(2),A2(2) |
Table
Name | Region |
Anil | A1 |
Anil | A1 |
Anil | A2 |
Anil | A2 |
Sunil | A1 |
Sunil | A1 |
Sunil | A2 |
Sunil | A2 |
Solved! Go to Solution.
@Sudbrl you can do this
Measure 2 =
CONCATENATEX (
ADDCOLUMNS (
SUMMARIZE ( 'fact', 'fact'[Name], 'fact'[Region] ),
"result",
[Region] & "," & "("
& CALCULATE (
DISTINCTCOUNT ( 'fact'[Region] ),
ALLEXCEPT ( 'fact', 'fact'[Name] )
) & ")"
),
[result],
",",
[Name]
)
@Sudbrl you can do this
Measure 2 =
CONCATENATEX (
ADDCOLUMNS (
SUMMARIZE ( 'fact', 'fact'[Name], 'fact'[Region] ),
"result",
[Region] & "," & "("
& CALCULATE (
DISTINCTCOUNT ( 'fact'[Region] ),
ALLEXCEPT ( 'fact', 'fact'[Name] )
) & ")"
),
[result],
",",
[Name]
)
User | Count |
---|---|
14 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
28 | |
19 | |
14 | |
8 | |
5 |