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:
Solved! Go to Solution.
Hi, @jsama
I simulated some data that should match your situation.
You need to create a new date table.
Table:
Date = CALENDAR(MIN('Table'[Date]),MAX('Table'[Date]))
Column:
Month = MONTH([Date])
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)
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.
Hi, @jsama
I simulated some data that should match your situation.
You need to create a new date table.
Table:
Date = CALENDAR(MIN('Table'[Date]),MAX('Table'[Date]))
Column:
Month = MONTH([Date])
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)
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.
User | Count |
---|---|
92 | |
36 | |
34 | |
16 | |
13 |
User | Count |
---|---|
95 | |
30 | |
27 | |
16 | |
16 |