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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all!
I have a table with this structure:
| Order Nr | Date | Step | Value |
| 1001 | 01.01.2022 | 10 | 5 |
| 8001 | 01.01.2022 | 10 | 5 |
| 2001 | 01.01.2022 | 11 | 5 |
| 1002 | 01.01.2022 | 10 | 6 |
Now I would like to filter out all rows where
Since this is a really huge table I have a strong focus on the performance.
What would be your sugestion here?
Solved! Go to Solution.
Hi,
With the following data:
I filter with the following query and get the below output
not Text.StartsWith([Order Nr], "8") and not (Text.StartsWith([Order Nr], "5") and [Step] >= 11 and [Step] <= 12 )
Regards.
Hi,
With the following data:
I filter with the following query and get the below output
not Text.StartsWith([Order Nr], "8") and not (Text.StartsWith([Order Nr], "5") and [Step] >= 11 and [Step] <= 12 )
Regards.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 16 | |
| 12 | |
| 9 | |
| 6 | |
| 6 |