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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Medida para calcular el recuento acumulado mensual

Buenos días por favor solicitu su gentil colaboración con la elaboración de una medida en el siguiente contexto:

Se tiene un número de suscripciónes de personas. mediante la función COUNT puedo saber el total de personas suscritas por mes, año etc. pero necesito una medida que me muestre de enero a diciembre el acumulado de éstas suscripciones. por ejemplo:

 

mescantidad de personas inscritasevolución de inscripciones

enero

2

2
febrero46
marzo511
....  
diciembrenn

 

Muchas gracias desde luego,

 

Carlos

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous ,

 

Assuming you have a date column or a calendar table you need to make a measure similar to the one below:

 

Evolucione personas inscritas =
CALCULATE (
    SUM ( Table[cantidad de personas inscritas] );
    FILTER ( ALL ( Table[Date] ); Table[Date] <= MAX ( Table[Date] ) )
)

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

3 REPLIES 3
Icey
Community Support
Community Support

Hi @Anonymous ,

Is this problem solved?

 

Best Regards,

Icey

MFelix
Super User
Super User

Hi @Anonymous ,

 

Assuming you have a date column or a calendar table you need to make a measure similar to the one below:

 

Evolucione personas inscritas =
CALCULATE (
    SUM ( Table[cantidad de personas inscritas] );
    FILTER ( ALL ( Table[Date] ); Table[Date] <= MAX ( Table[Date] ) )
)

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Anonymous
Not applicable

Thank you so much

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

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