Forum Discussion
hengsworld
9 years agoFrequent Visitor
remove duplicates names
Hello Everyone, I been stuck on this problem for a bit now and reaching our for some help :) I am looking to remove duplicate names for example UsersName | Is-WindowFoundationReady B...
Phil_Seamark
9 years agoMicrosoft Employee
This table will give you a distinct list of users who have at least one record where they are Foundation Ready according to what I think your rules are.
Let me know what you think
New Table = SUMMARIZE(
FILTER(
'Table',
'Table'[Office] IN {"Office 365","Office 2016"}
),
'Table'[User Name] ,
"Is-WindowsFoundationReady" , "Foundation Ready"
)hengsworld
9 years agoFrequent Visitor
Hi Phil, when I tried to implement the new table it is giving me this error "The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value."
- Sean9 years agoCommunity Champion
- hengsworld9 years agoFrequent Visitor
I see, thank you! Phil_Seamarkhow can I also provide users that are not foundation ready?