Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi All,
With a measure how do you find Unique person beind every team Number. For Example Account name A has 2 people but Person will be counted as 1 and other example be Josh1 has serval account name with single person the count will be 1. Result as shown in Result table.
Table1 | |
Person | Account Name |
Jake | A |
Jhon | A |
Joy | B |
Roy | C |
Tim | D |
Tina | E |
Josh | F |
Ryan | F |
Josh1 | Z |
Josh1 | Y |
Josh1 | X |
Josh1 | U |
Josh1 | W |
Result
Result | Account Name |
Jake, Jhon | 1 |
Joy | 1 |
Roy | 1 |
Tim | 1 |
Tina | 1 |
Josh | 1 |
Ryan | |
Josh1 | 1 |
Solved! Go to Solution.
Hi @Anonymous ,
You can create a calculated column as below to get it:
Result =
CONCATENATEX (
FILTER ( 'Table1', 'Table1'[Account Name] = EARLIER ( 'Table1'[Account Name] ) ),
Table1[Person],
","
)
Best Regards
Hi @Anonymous ,
You can create a calculated column as below to get it:
Result =
CONCATENATEX (
FILTER ( 'Table1', 'Table1'[Account Name] = EARLIER ( 'Table1'[Account Name] ) ),
Table1[Person],
","
)
Best Regards
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
15 | |
11 | |
8 | |
8 |
User | Count |
---|---|
19 | |
15 | |
15 | |
14 | |
13 |