Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I note that i have applied some steps which i didnt intend to....the step of
Table.SelectRows(#"xxx", each true) which appear few times in my applied steps. what does this step do? Just want to make sure I didnt filter out useful lines...
Thanks
Solved! Go to Solution.
These steps will be created if you started to filter your data but then decided otherwise and didn't finish with it for example.
The function means returns every row which returns "true" on that condition from the 2nd argument. As there is actually no condition, but the result "true" being hardcoded for each row, all raws will be returned (and all rows would be deleted if it would be "false").
So you can safely delete it 😉
Imke Feldmann (The BIccountant)
If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!
How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries
These steps will be created if you started to filter your data but then decided otherwise and didn't finish with it for example.
The function means returns every row which returns "true" on that condition from the 2nd argument. As there is actually no condition, but the result "true" being hardcoded for each row, all raws will be returned (and all rows would be deleted if it would be "false").
So you can safely delete it 😉
Imke Feldmann (The BIccountant)
If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!
How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
88 | |
87 | |
35 | |
35 |
User | Count |
---|---|
153 | |
99 | |
85 | |
63 | |
54 |