March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hola a todos
Estoy tratando de crear un informe que muestre a los clientes que no hicieron pedidos en el último mes. Quieren ver a los clientes que no han pedido nada desde las fechas del 29 de noviembre de 2021 al 27 de diciembre de 2021 de los clientes activos que no ordenaron nada. ¡Cualquier ayuda sería genial! ¡Gracias!
Solved! Go to Solution.
Hay @johnw597 ,
Puedes probar esto
Lost Customers =
VAR _CurrentDate = MAX('Date'[Date])
VAR _1MonthsAgo = EOMONTH(_CurrentDate, -1)
VAR _Last1MonthCustomers =
CALCULATETABLE(
VALUES(Sales[Customer_ID]),
DATESINPERIOD('Date'[Date], _CurrentDate, -1, MONTH)
)
VAR _BeforeLast1MonthCustomers =
CALCULATETABLE(
VALUES(Sales[Customer_ID]),
REMOVEFILTERS('Date'[Date]),
'Date'[Date] <= _1MonthsAgo
)
VAR _LostCustomers = EXCEPT(_BeforeLast1MonthCustomers, _Last1MonthCustomers)
RETURN
COUNTROWS(_LostCustomers)
Puedes echar un vistazo a este video.
https://www.youtube.com/watch?v=m1uupRDWzQw
https://radacad.com/lost-customers-dax-calculation-for-power-bi
Saludos
Duro Nathani
Hay @johnw597 ,
Puedes probar esto
Lost Customers =
VAR _CurrentDate = MAX('Date'[Date])
VAR _1MonthsAgo = EOMONTH(_CurrentDate, -1)
VAR _Last1MonthCustomers =
CALCULATETABLE(
VALUES(Sales[Customer_ID]),
DATESINPERIOD('Date'[Date], _CurrentDate, -1, MONTH)
)
VAR _BeforeLast1MonthCustomers =
CALCULATETABLE(
VALUES(Sales[Customer_ID]),
REMOVEFILTERS('Date'[Date]),
'Date'[Date] <= _1MonthsAgo
)
VAR _LostCustomers = EXCEPT(_BeforeLast1MonthCustomers, _Last1MonthCustomers)
RETURN
COUNTROWS(_LostCustomers)
Puedes echar un vistazo a este video.
https://www.youtube.com/watch?v=m1uupRDWzQw
https://radacad.com/lost-customers-dax-calculation-for-power-bi
Saludos
Duro Nathani
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.