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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Jigar1276
Helper I
Helper I

Add new column to show unique counts

Hi,

I have following sample table "ProjectTracking" in which I am trying to add the new column which is in red box:

Jigar1276_2-1634045785425.png

New column named "Single or Multiple" should show if Assignee is working on multiple projects or single project. 

e.g. Jerry is working on "Project A" and "Project B" so for all the rows where Assignee is Jerry it should show "Multiple Projects" in "Single or Multiple" column. Simillarly Tom is working on "Project A", "Project B" and "Project C".

 

But for Goofy, he is working only on "Project D" so it should show "Single Project" in column "Single or Multiple".

 

I wrote the measure and it is working fine, but I need to add the column for different purpose.

 

Thanks in advance,

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Jigar1276 Try this:

NewColumn=var CurrAssignee='table'[Assignee]

var CountProject=COUNTROWS(SUMMARIZE(FILTER('table','table'[Assignee]=CurrAssignee),'table'[Project Name]))

return IF(CountProject=1,"Single Project","Multiple Projects")

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Jigar1276 Try this:

NewColumn=var CurrAssignee='table'[Assignee]

var CountProject=COUNTROWS(SUMMARIZE(FILTER('table','table'[Assignee]=CurrAssignee),'table'[Project Name]))

return IF(CountProject=1,"Single Project","Multiple Projects")

Brilliant. This worked as a charm.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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