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

Be 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

Reply
Syndicate_Admin
Administrator
Administrator

Análisis de clientes nuevos + perdidos (basado en ingresos recurrentes)

hola

Sido trabajando esto para 2 días rectos y leído incontables correos de foro y YT vids - ninguna alegría todavía.

Tengo un conjunto de datos de ingresos que contiene ingresos de clientes recurrentes, no ventas (los mismos clientes aparecen todos los meses).

Quiero identificar cada mes cuántos clientes dejan de generar ingresos y cuántos clientes comienzan a generar ingresos para poder trazar como un gráfico de columnas apiladas.

(es decir, el cliente X tuvo ingresos el mes pasado, pero no este mes = cliente perdido. El cliente Y no tuvo ingresos el mes pasado, pero tiene ingresos este mes = nuevo cliente).

También necesito mostrar un Top 10 / Bottom 10 Clientes nuevos / perdidos por ingresos ganados / perdidos cada mes

DATOS DE EJEMPLO: https://www.dropbox.com/s/71o28dww2xq3bkl/Test.pbix?dl=0

Resultados esperados:

GL_PERIOD_START_DATECUSTOMER_NUMBERUSD_BUDGET_RATE
ene-21AaaUS$ 100
ene-21BbbUS$ 500
Feb-21AaaUS$ 100
Feb-21BbbUS$ 500
Mar-21AaaUS$ 100
Mar-21BbbUS$ 500
Abr-21BbbUS$ 500
Mayo-21BbbUS$ 500
Mayo-21CccUS$ 300
jun-21BbbUS$ 500
jun-21CccUS$ 300


En el ejemplo anterior, los resultados esperados serían:

Ene-21: 0 nuevo, 0 perdido
Feb-21: 0 nuevo, 0 perdido
Mar-21: 0 nuevos, 0 perdidos
Abr-21: 0 nuevo, 1 perdido
Mayo-21: 1 nuevo, 0 perdido


¡gracias!

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

Hay @JakeHRogers ,

Utilice las dos medidas siguientes:

New Customer Count = COUNTROWS(EXCEPT(VALUES(REVENUE[CUSTOMER_NUMBER]),CALCULATETABLE(VALUES(REVENUE[CUSTOMER_NUMBER]),FILTER(ALL(REVENUE),REVENUE[GL_PERIOD_START_DT]<MIN('CALENDAR'[Date])))))


Lost Customer Count = COUNTROWS(EXCEPT(CALCULATETABLE(VALUES(REVENUE[CUSTOMER_NUMBER]),DATEADD('CALENDAR'[Date],-1,MONTH)),VALUES(REVENUE[CUSTOMER_NUMBER])))+0

Capture49.PNG

Si esta publicación ayuda, entonces por favor considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

Saludos

Dedmon Dai

View solution in original post

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

Hay @JakeHRogers ,

Utilice las dos medidas siguientes:

New Customer Count = COUNTROWS(EXCEPT(VALUES(REVENUE[CUSTOMER_NUMBER]),CALCULATETABLE(VALUES(REVENUE[CUSTOMER_NUMBER]),FILTER(ALL(REVENUE),REVENUE[GL_PERIOD_START_DT]<MIN('CALENDAR'[Date])))))


Lost Customer Count = COUNTROWS(EXCEPT(CALCULATETABLE(VALUES(REVENUE[CUSTOMER_NUMBER]),DATEADD('CALENDAR'[Date],-1,MONTH)),VALUES(REVENUE[CUSTOMER_NUMBER])))+0

Capture49.PNG

Si esta publicación ayuda, entonces por favor considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

Saludos

Dedmon Dai

Syndicate_Admin
Administrator
Administrator

@JakeHRogers , Puedes probar medidas como

medidas de ejemplo

aquí la medida de ventas será sum(Table[USD_BUDGET_RATE])

MTD = calculate([Sales],datesmtd('Date'[Date]))
LMTD = calculate([Sales],DATESMTD(DATEADD('Date'[Date],-1,MONTH)))	
Lost Customer This Month = Sumx(VALUES(Customer[Customer Id]),if(ISBLANK([MTD]) && not(ISBLANK([LMTD])) , 1,BLANK()))
New Customer This Month = sumx(VALUES(Customer[Customer Id]), if(ISBLANK([LMTD]) && not(ISBLANK([MTD])) ,1,BLANK()))
Retained Customer This Month = if(not(ISBLANK([MTD])) && not(ISBLANK([LMTD])) , 1,BLANK())

consulte para obtener más detalles

https://community.powerbi.com/t5/Community-Blog/Customer-Retention-Part-1-Month-on-Month-Retention/b...

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors