March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
26 | |
21 | |
20 | |
14 | |
10 |