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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I need to filter this formula:
.Media = SUM (Tips [Odd]) / COUNT (Tips [Odd]) //Current formula
I need to filter only if it is greater than or equal to 4 (Tips [Odd])
I do not know how to make this condition, if anyone can help me.
Thank you.
Solved! Go to Solution.
Hi @strikw,
Try with this:
NewMeasure = CALCULATE ( [Media]; Tips[Odd] > 4 )
Or in the same measure:
Media = CALCULATE ( SUM ( Tips[Odd] ) / COUNT ( Tips[Odd] ); Tips[Odd] > 4 )
Regards.
Note: If you get a syntax error it's probably because of the semicolons instead of commas, Power BI has the two options to delimit DAX, change semicolons by commas and it should work.
Hi @strikw,
Try with this:
NewMeasure = CALCULATE ( [Media]; Tips[Odd] > 4 )
Or in the same measure:
Media = CALCULATE ( SUM ( Tips[Odd] ) / COUNT ( Tips[Odd] ); Tips[Odd] > 4 )
Regards.
Note: If you get a syntax error it's probably because of the semicolons instead of commas, Power BI has the two options to delimit DAX, change semicolons by commas and it should work.
Thank you very much, it worked well.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 40 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 96 | |
| 83 | |
| 36 | |
| 30 | |
| 25 |