The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
24 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |