Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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:
mes | cantidad de personas inscritas | evolución de inscripciones |
enero | 2 | 2 |
febrero | 4 | 6 |
marzo | 5 | 11 |
.... | ||
diciembre | n | n |
Muchas gracias desde luego,
Carlos
Solved! Go to Solution.
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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Anonymous ,
Is this problem solved?
Best Regards,
Icey
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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThank you so much
User | Count |
---|---|
84 | |
82 | |
66 | |
52 | |
46 |
User | Count |
---|---|
100 | |
48 | |
42 | |
39 | |
38 |