Forum Discussion
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:
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,
- Anonymous4 years ago
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")
2 Replies
- AnonymousNot 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")
- Jigar1276
Helper I
Brilliant. This worked as a charm.