This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |