Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hola a todos
Tengo una tabla con valores diarios:
1 Ene: 10
3 Ene: 15
4 Ene: 20
etcetera
Me gustaría tener una nueva mesa con
Ene: promedio para la tabla anterior (en este caso 15)
¿Cómo hago esto?
Solved! Go to Solution.
En función de los datos de ejemplo que haya proporcionado, puede probar esto para crear una nueva tabla.
Table 2 =
VAR tbl=ADDCOLUMNS('Table',"Month",FORMAT('Table'[date],"mmm"))
return SUMMARIZE(tbl,[Month],"average",AVERAGE('Table'[value]))
Proud to be a Super User!
Hola @easyleesie ,
¿Para qué necesita el resultado en una nueva tabla?
Eche un vistazo al archivo PBIX adjunto.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Vi tu archivo, muchas gracias. Sin embargo puede existir la necesidad de tener control sobre los resultados (el Promedio, Acumulados, etc), que aquí no se expone. No omito señalar que tu aportación apoya. En mi caso no me apoya.
En función de los datos de ejemplo que haya proporcionado, puede probar esto para crear una nueva tabla.
Table 2 =
VAR tbl=ADDCOLUMNS('Table',"Month",FORMAT('Table'[date],"mmm"))
return SUMMARIZE(tbl,[Month],"average",AVERAGE('Table'[value]))
Proud to be a Super User!
Gracias. Voy a replicar y te comento.
@easyleesie , Supongamos que tiene fecha en la tabla. Tener un mes año en su mesa o tabla de fechas
Año del mes á formato([fecha],"AAAAMM")
Pruebe una medida como
Averagex(Summarize(filter(Table, Month(Table[Date])-1),Table[Month Year], "_1", Sum(Table[Value])),[_1])
Muchas gracias. Voy a replicar y te comento.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.