Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
If i have two fields : X and Y. Both integer.
I can filter one of them with the filter option. But what if would like to filter on this : WHERE X > Y
how can i do this? I would like to do this in M. And without creating a new column with the difference between X and Y, and filter on this.
Thanks in advanced.
When you say 2 fields, do you mean 2 columns? If you want to do this in Power Query (M as you say), then you will need a new column. But it doesn't have to be the difference between the 2 columns. Just add a new column something like this.
if [X] > [Y] then 1 else 0
then just filter when this column equals 1.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.