Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hola , su ayuda por favor , no me muestra el promedio de los importes de los 12 meses .
Que falta en mi medida DAX .
Solved! Go to Solution.
Hi, @JoseLuisC
You can try the following methods.
12 month average =
Var _N1=SUMMARIZE(FILTER('Table',[PERIODO]<=MAX('Table'[PERIODO])),'Table'[PERIODO],"Sum",[Measure])
Var _N2=TOPN(12,_N1,[PERIODO],DESC)
Var _Average=DIVIDE(SUMX(_N2,[Sum]),12)
return
_Average
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @JoseLuisC
You can try the following methods.
12 month average =
Var _N1=SUMMARIZE(FILTER('Table',[PERIODO]<=MAX('Table'[PERIODO])),'Table'[PERIODO],"Sum",[Measure])
Var _N2=TOPN(12,_N1,[PERIODO],DESC)
Var _Average=DIVIDE(SUMX(_N2,[Sum]),12)
return
_Average
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
please show the formula for the Existencias measure.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
85 | |
79 | |
64 | |
51 | |
30 |
User | Count |
---|---|
116 | |
114 | |
70 | |
66 | |
39 |