Forum Discussion
Saxon10
4 years agoPost Prodigy
Group by column without duplication
Hi, I have a one table and it's contain the following columns are Name code, Name and Team. The Name and Team has duplicate entry against each Name code. I am trying to get the unique nam...
- 4 years ago
SteveHailey
4 years agoSolution Specialist
Hi Saxon10.
This is one way:
New Table =
FILTER(
ALL( 'Table'[NAME],'Table'[TEAM] ),
'Table'[TEAM] <> "NO"
)- Saxon104 years agoPost Prodigy
- SteveHailey4 years agoSolution Specialist
- Saxon104 years agoPost Prodigy
Thanks for your reply and its working fine.