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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I have a simple AverageX Measure
Measure = Averagex ( Table1, Table1[Value] / related Table2(Positions))I don't have values for all dates, so in this cells it will display infinite, and if I put that measure into a table it wil show "infinite" as well. Its like having a complete sales table1 but not a related "position" value for all sales.
Only if I use the filter panel and filter out all dates without value I get a Average Value. Since these days contain other important information in other columns I cannot filter them out in the visual. So is it possible to calculate the average and ignoring the blank fields?
Thank you very much in advance.
Best
Solved! Go to Solution.
@Applicable88 , You try like
Averagex ( Table1, divide(Table1[Value] , related (Table2(Positions)) )
or
divide(sum(Table1[Value] ), sumx(Table1, related (Table2(Positions))))
or
divide(sum(Table1[Value] ), sum(Table2(Positions)))
@Applicable88 , You try like
Averagex ( Table1, divide(Table1[Value] , related (Table2(Positions)) )
or
divide(sum(Table1[Value] ), sumx(Table1, related (Table2(Positions))))
or
divide(sum(Table1[Value] ), sum(Table2(Positions)))
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 192 | |
| 125 | |
| 99 | |
| 67 | |
| 48 |