Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
User | Count |
---|---|
9 | |
7 | |
5 | |
5 | |
4 |
User | Count |
---|---|
15 | |
13 | |
8 | |
6 | |
6 |