Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jcawley
Helper III
Helper III

Clientes perdidos

Hola a todos,

Estoy tratando de encontrar el número de clientes que están 'perdidos' para un mes dado!

Perdidos: el número de clientes que no han completado una cita en 24 meses pero que han comprado antes.

Tengo 3 tablas: Fechas, Citas y una mesa Ha comprado antes. Las citas y los que han comprado están vinculados por el ID de cliente. Citas tiene una columna llamada "Estado" que debe leer "Completado". Ha comprado antes de la mesa es sólo una lista de las personas que han comprado de nosotros.

Intenté reasignar una solución que encontré aquí en los foros, pero no está mirando Las citas[Estado] - "Completado" o si el paciente aparece en la tabla Ha comprado antes.

Hasta ahora la medida reutilizada se ve así:

Clientes perdidos ?
VAR __24mosago de VAR ?
EDATE ( MIN ( 'Fechas'[Fecha] ), -24 )
VAR __25mosago ?
EDATE ( MIN ( 'Fechas'[Fecha] ), -25 )
devolución
COUNTROWS (
FILTRO (
ALLSELECTED (Nombramientos[Fecha] ),
Y (
ISBLANK (
CALCULATE ( COUNTROWS ( Citas), ALL ( 'Fechas' ), 'Fechas'[Fecha] > __24mosago )
),
NO (
ISBLANK (
CALCULATE ( COUNTROWS ( Citas), ALL ( 'Fechas' ), 'Fechas'[Fecha] > __25mosago )
)
)
)
)
)


Cualquier ayuda sería muy apreciada!

3 REPLIES 3

Hola @jcawley ,

¿Se resolvió su problema?

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

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


amitchandak
Super User
Super User

@jcawley, algo así con la tabla de citas

Cliente perdido:countx(filter(summarize(Customer, Customer[Name], "_1" ,CALCULATE(sum(Sales[Sales Amount]),all(sales)),"_2",
CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date],ENDOFMONTH(Sales[Sales Date]),-24,MONTH))
), not(isblank([_1])) && isblank([_2])),[Name])

Para obtener lo mejor de la función de inteligencia del tiempo. Asegúrese de que tiene un calendario de fechas y que se ha marcado como la fecha en la vista de modelo. Además, únase a ella con la columna de fecha de su/s hecho/s. Consulte:
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

Vea si mi seminario web sobre Time Intelligence puede ayudar: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-Y...


Apreciamos tus Felicitaciones.

parry2k
Super User
Super User

@jcawley consulte esta entrada de blog.

Me gustaría elogiossi mi solución ayudara.👉Si puedes pasar tiempo publicando la pregunta, también puedes hacer esfuerzos para dar a Kudos quien haya ayudado a resolver tu problema. ¡Es una muestra de agradecimiento!

Visítenos enhttps://perytus.com, su ventanilla única para proyectos/formación/consulta relacionados con Power BI.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.