Forum Discussion
fabianfilth
3 years agoRegular Visitor
DateAdd
Hello power bi team, Can you please give me some help on the following I want to create a measure that calculates the total cost of the last day of the previous month of the previous year, bu...
- 3 years ago
Hi fabianfilth
please try
=
CALCULATE (
[Costo Total],
'Dim Fecha'[Date] = EOMONTH ( 'Calidad Inventario'[Fecha Cargue], -12 ),
ALL ( 'Dim Fecha' )
)
tamerj1
3 years agoCommunity Champion
Hi fabianfilth
please try
=
CALCULATE (
[Costo Total],
'Dim Fecha'[Date] = EOMONTH ( 'Calidad Inventario'[Fecha Cargue], -12 ),
ALL ( 'Dim Fecha' )
)