cancel
Showing results for 
Search instead for 
Did you mean: 
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
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors