Forum Discussion
Filter Page or Report based on Other Field
- 10 years ago
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.
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.