Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
i have DAX yield is input Qty/Output Qty,
then i want to filters value result DAX yield with range 97% until 98%, this is result visualization with matrix
how DAX filter with range 97% - 98%?
please your advice, thank you
Solved! Go to Solution.
@Wicak , I think something similar to Dynamic Segmentation, Please refer
Dynamic Segmentation Bucketing Binning
https://community.powerbi.com/t5/Quick-Measures-Gallery/Dynamic-Segmentation-Bucketing-Binning/m-p/1...
Dynamic Segmentation, Bucketing or Binning: https://youtu.be/CuczXPj0N-k
Hi @Wicak ,
Based on your description, I have create a simple sample:
Please try:
Measure = IF(MAX('Table'[Yield])<=0.98&&MAX('Table'[Yield])>=0.97,MAX('Table'[Yield]),BLANK())
Then use it to replace Yield in the value field
Output:
If the result is not what you want, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.
Refer to:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Wicak ,
Based on your description, I have create a simple sample:
Please try:
Measure = IF(MAX('Table'[Yield])<=0.98&&MAX('Table'[Yield])>=0.97,MAX('Table'[Yield]),BLANK())
Then use it to replace Yield in the value field
Output:
If the result is not what you want, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.
Refer to:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Wicak , I think something similar to Dynamic Segmentation, Please refer
Dynamic Segmentation Bucketing Binning
https://community.powerbi.com/t5/Quick-Measures-Gallery/Dynamic-Segmentation-Bucketing-Binning/m-p/1...
Dynamic Segmentation, Bucketing or Binning: https://youtu.be/CuczXPj0N-k
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
28 | |
18 | |
15 | |
7 | |
6 |