Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
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
Anonymous
Not applicable

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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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