This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello to all,
I have a series of calculated measures and of these measures I would like to make a simple arithmetic average.
Is there someone who can help me?
From [-12 OH] to [-1 OH] are Measures and I need to calculate the Average. In Figure 1 I have full of Data Sets while in Figure 2 I haven't Date in [-12 OH] to [-9 OH]. In the first case the average must correspond on all the measures while in the second case only on the full ones
Hi @GoodMan85,
I suggest you use the matrix table
I create some simple data like the following:
And create a matrix table
The result:
If I misunderstood you meaning, please let me know.
Here is my pbix file you can reference.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @GoodMan85 ,
Try the following code:
Average of measures =
AVERAGEX (
FILTER( UNION (
SUMMARIZE ( table, table[itemcode], "@MeasureTotal", [Measure] ),
SUMMARIZE ( table, table[itemcode], "@MeasureTotal", [Measure 2] ),
SUMMARIZE ( table, table[itemcode], "@MeasureTotal", [Measure 3] )
),[@MeasureTotal] <> BLANK()),
[@MeasureTotal]
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the May 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 |
|---|---|
| 32 | |
| 25 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |