Reply
avatar user
Anonymous
Not applicable

Unique Person based on accounts.

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
PersonAccount Name
JakeA
JhonA
JoyB
RoyC
TimD
TinaE
JoshF
RyanF
Josh1Z
Josh1Y
Josh1X
Josh1U
Josh1W

 

Result

 

ResultAccount Name
Jake, Jhon1
Joy1
Roy1
Tim1
Tina1
Josh1
Ryan 
Josh11
1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

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],
    ","
)

yingyinr_0-1671602696426.png

yingyinr_1-1671602873183.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yiruan-msft
Community Support
Community Support

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],
    ","
)

yingyinr_0-1671602696426.png

yingyinr_1-1671602873183.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)