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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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