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
I want to filter Worker table in DAX and get data like
Select * from Worker w
where w.Name <> "Once Off"
Solved! Go to Solution.
Hi, @Anonymous ;
If you only want to filter columns in visual or data view, you can directly filter like below:
If you want to use dax, you could create a measure.
flag = IF(MAX('Table'[Name])="Once Off",0,1)
then apply it into filter.
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous equivalent DAX query would be
//in SSAS
EVALUATE
FILTER(Worker, Worker[Name]<>"Once Off")
//in PBI
Table = FILTER(Worker, Worker[Name]<>"Once Off")
No any trick to filter data in new column/new measure?
Yes there is. @Anonymous but how does your data look like? Provide a sample and what is the end goal?
I want this column of Worker table in a single column this is the end goal
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 64 | |
| 44 | |
| 42 | |
| 34 | |
| 23 |
| User | Count |
|---|---|
| 199 | |
| 124 | |
| 104 | |
| 74 | |
| 55 |