Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I am trying to calculate the average for the column below but only want to include the positive values. I have also attached the formula I thought would work but it keeps giving me an error. I also tried using calculate at the beggining of my formula and using >0 as a filter but that didnt work either. Any help is greatly appreciated!
Solved! Go to Solution.
Hi @benvett14 ,
You need to write your DAX as follows:
payCycle2 = CALCULATE(AVERAGE(barth[pay cycle]), FILTER(ALLSELECTED(barth), barth[pay cycle] > 0))
Thanks,
Pragati
Hi @benvett14 ,
If (Barth[pay cycle] > 0 , AVERAGE(Barth[pay cycle]))
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Hi @benvett14 ,
You need to write your DAX as follows:
payCycle2 = CALCULATE(AVERAGE(barth[pay cycle]), FILTER(ALLSELECTED(barth), barth[pay cycle] > 0))
Thanks,
Pragati
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 25 | |
| 25 | |
| 23 | |
| 15 |
| User | Count |
|---|---|
| 45 | |
| 32 | |
| 18 | |
| 16 | |
| 16 |