Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hey All!
This is my measure:
Solved! Go to Solution.
If that is the problem, then you could try this:
Net USD average per Day =
VAR NetPerDay =
ADDCOLUMNS (
VALUES ( 'Date'[Date] ),
"Net", CALCULATE ( SUM ( 'Revenues DB'[Net USD] ) )
)
RETURN
AVERAGEX ( FILTER ( NetPerDay, NOT ( ISBLANK ( [Net] ) ) ), [Net] )
I'm pretty sure AVERAGEX already ignores blank values though, so it might be zero values tripping you up rather than blank values. In this case, you could filter for [Net] > 0 rather than NOT ISBLANK ( [Net] ) ).
If that is the problem, then you could try this:
Net USD average per Day =
VAR NetPerDay =
ADDCOLUMNS (
VALUES ( 'Date'[Date] ),
"Net", CALCULATE ( SUM ( 'Revenues DB'[Net USD] ) )
)
RETURN
AVERAGEX ( FILTER ( NetPerDay, NOT ( ISBLANK ( [Net] ) ) ), [Net] )
I'm pretty sure AVERAGEX already ignores blank values though, so it might be zero values tripping you up rather than blank values. In this case, you could filter for [Net] > 0 rather than NOT ISBLANK ( [Net] ) ).
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |