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.
hey guys,
have been trying to work something out but till now each aproach isnt giving me the correct result or its failing,
need to determine a dax that takes as reference today dates, send me back this exact date 12 month ago and sum a column in that time period exactly, here my last attemp:
Ordenado Mes -1 =
var actualdate = TODAY()
var fechainicial = STARTOFMONTH(DATEADD( 'Fecha Contibilización'[Date] ,-1,MONTH))
var fechafinal = MAX( ENDOFMONTH(DATEADD( 'Fecha Contibilización'[Date] ,-1,MONTH)))
var codigoarticulo = 'Query Inventario Maestro'[Codigo Articulo Corregido]
return
CALCULATE(SUM('Reporte Ordenes'[Cantidad] ), 'Reporte Ordenes'[Codigo Articulo] =codigoarticulo, 'Reporte Ordenes'[Fecha Contabilizacion] >= fechainicial,'Reporte Ordenes'[Fecha Contabilizacion] <= fechafinal)
Proud to be a Super User!
Solved! Go to Solution.
never mind found the soluction,
Ordenado Mes -1 =
var intervalo = -2
var codigoarticulo = 'Query Inventario Maestro'[Codigo Articulo Corregido]
var fechainicial = TOPN(1, DATESINPERIOD('Reporte Ordenes'[Fecha Contabilizacion], TODAY(), intervalo ,MONTH))
var fechafinal = ENDOFMONTH(fechainicial)
return
CALCULATE(SUM('Reporte Ordenes'[Cantidad] ), 'Reporte Ordenes'[Codigo Articulo] =codigoarticulo, 'Fecha Contibilización'[Date] >= fechainicial,'Fecha Contibilización'[Date] <= fechafinal)
Proud to be a Super User!
never mind found the soluction,
Ordenado Mes -1 =
var intervalo = -2
var codigoarticulo = 'Query Inventario Maestro'[Codigo Articulo Corregido]
var fechainicial = TOPN(1, DATESINPERIOD('Reporte Ordenes'[Fecha Contabilizacion], TODAY(), intervalo ,MONTH))
var fechafinal = ENDOFMONTH(fechainicial)
return
CALCULATE(SUM('Reporte Ordenes'[Cantidad] ), 'Reporte Ordenes'[Codigo Articulo] =codigoarticulo, 'Fecha Contibilización'[Date] >= fechainicial,'Fecha Contibilización'[Date] <= fechafinal)
Proud to be a Super User!
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.
User | Count |
---|---|
58 | |
55 | |
55 | |
36 | |
30 |
User | Count |
---|---|
79 | |
66 | |
45 | |
44 | |
42 |