Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
MarkDGaal
Helper III
Helper III

Filter Page or Report based on Other Field

Hi guys, I'm seeing if there is anyway that I can express a page or report level filter that applys only when the value in one field is less than or equal to the value in another field. From what I can tell you can only enter "valid values" into the advanced filtering options; however, I was hoping that there was a workaround that didn't invovling me going into my query and creating 5 conditional columns for when a <, >, <=, >=, or = situation exists. Thanks in advance

1 ACCEPTED SOLUTION
sornavoor
Resolver I
Resolver I

Suggest doing the following. 

a)  Create a Measuse with DAX  reflecting a the required filter criteria some thing like below; You may get to as complicated as you wish here; .

     MyCustomFilter = IF(Table1[Column1] < Table1[Column2], "True", "False")

b) Use the "MyCustomFilter"   whereever you need. 

 

Hope the suggestion helps solves your requirement.

 

 

 

 

View solution in original post

3 REPLIES 3
sornavoor
Resolver I
Resolver I

Suggest doing the following. 

a)  Create a Measuse with DAX  reflecting a the required filter criteria some thing like below; You may get to as complicated as you wish here; .

     MyCustomFilter = IF(Table1[Column1] < Table1[Column2], "True", "False")

b) Use the "MyCustomFilter"   whereever you need. 

 

Hope the suggestion helps solves your requirement.

 

 

 

 

Of Course, duh, Thank You. Would be nice if MS just include the ability to add fields into the values only box.

Agree that MS  should enable this -  Please feel free to add to requested Ideas  and see where it goes. 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors