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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors