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
jsama
Frequent Visitor

Promedio de ingresos de clientes

Hola, necesito ayuda con lo siguiente:

Tengo una tabla de excel donde tengo los accesos de los socios de dos meses. Quisiera conocer el promedio de accesos por mes. Los socios pueden ingresar más de una vez al día, por lo que el promedio deberá de estar en base a un conteo distintivo. 
Por ejemplo: El socio 1 ingresó 5 días en el mes de agosto, el socio 2 ingresó 10 días y el socio 3 ingresó 15 días, por lo que el promedio de ingresos del mes de agosto es de 10. Por último, quisiera poder ver esto en un histograma, en donde el eje X muestre los meses y el eje Y el promedio de los ingresos.
Adjunto un excel con una muestra de los datos:

Accesos 

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @jsama 

 

I simulated some data that should match your situation. 

vzhangti_1-1674798487900.png

You need to create a new date table.

Table:

Date = CALENDAR(MIN('Table'[Date]),MAX('Table'[Date]))

Column:

Month = MONTH([Date])

vzhangti_0-1674798463219.png

Measure:

Average = 
Var _N1=CALCULATE(COUNT('Table'[Date]),ALLEXCEPT('Date','Date'[Month]))
Var _N2=CALCULATE(DISTINCTCOUNT('Table'[Partner]),ALLEXCEPT('Date','Date'[Month]))
Return
DIVIDE(_N1,_N2)

vzhangti_2-1674798527204.png

Please check the attachment.

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
v-zhangti
Community Support
Community Support

Hi, @jsama 

 

I simulated some data that should match your situation. 

vzhangti_1-1674798487900.png

You need to create a new date table.

Table:

Date = CALENDAR(MIN('Table'[Date]),MAX('Table'[Date]))

Column:

Month = MONTH([Date])

vzhangti_0-1674798463219.png

Measure:

Average = 
Var _N1=CALCULATE(COUNT('Table'[Date]),ALLEXCEPT('Date','Date'[Month]))
Var _N2=CALCULATE(DISTINCTCOUNT('Table'[Partner]),ALLEXCEPT('Date','Date'[Month]))
Return
DIVIDE(_N1,_N2)

vzhangti_2-1674798527204.png

Please check the attachment.

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

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.

Top Solution Authors