Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hola
Me gustaría poder tener una función IF dentro de una medida que me permita llamar a otra medida si es antes de hoy y otra si es después de hoy. ¿Es posible hacer esto y si es así cómo?
La lógica es esencialmente = if( Calander[Fecha] <= Hoy() , Suma acumulada , Previsión )
Cualquier ayuda será apreciada.
saludos
Shaun
Solved! Go to Solution.
if( max(Calander[Fecha]) < Today() , [Suma acumulada], [Previsión] )
O
calculate([Suma acumulada], filtro(Calander, Calander[Fecha] < Hoy() )) + calculate([Forecast] , filter(Calander, Calander[Date] >= Today() ))
if( max(Calander[Fecha]) < Today() , [Suma acumulada], [Previsión] )
O
calculate([Suma acumulada], filtro(Calander, Calander[Fecha] < Hoy() )) + calculate([Forecast] , filter(Calander, Calander[Date] >= Today() ))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.