Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 name by team from the Table by using "New Table " option.
I am trying to apply the following DAX =summarize(Table, Table (Name), Table (Team), "Filter not equal to no", Table (Team) <>"No" but its not filter the column but its return true or false.
I want to ignore the "No" columns row from the table. I trying to get the unique Name by Team from the table.
Any suggestions that would be great.
Thank you.
Solved! Go to Solution.
Hi @Saxon10.
This is one way:
New Table =
FILTER(
ALL( 'Table'[NAME],'Table'[TEAM] ),
'Table'[TEAM] <> "NO"
)
Thanks for your reply and its working fine.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |