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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
rodfernandez
Helper I
Helper I

cumulative bar graph

I have the following Graph 
1.png
but I want to create a cumulative graph of the previous graph.
I create the following code

Acomulado RCA = 
CALCULATE(
	COUNTA('Reporte'[Etiqueta]);
	FILTER(
		CALCULATETABLE(
			SUMMARIZE('Reporte'; 'Reporte'[Mes]; 'Reporte'[Mes Name]);
			ALLSELECTED('Reporte')
		);
		ISONORAFTER(
			'Reporte'[Mes]; MAX('Reporte'[Mes]); DESC;
			'Reporte'[Mes Name]; MAX('Reporte'[Mes Name]); DESC
		)   
	)
)

that produce the following bar graph 

 

2.png

This is more or less what I wanted but I need that each element persist in time, for example for January in the first graph you have 1 yellow so in the cumulative graph you should have 1 yellow, so is fine. In February you have 1 red in the normal graph so in the cumulative graph you should have 1 yellow and 1 red, .... For March you should have 1 yellow, 1 red and 1 green, in May 1 yellow, 1 red and 3 green,....and so on 
what should I change in my code make each color persist over time?

 

 

1 ACCEPTED SOLUTION
v-lili6-msft
Community Support
Community Support

hi, @rodfernandez 

You could try this way:

Step1:

Create a fact Mes table, then create the relationship with report table by Mes

5.JPG

Step2:

Use this formula to add a measure

Acomulado RCA = 
CALCULATE (
    COUNTA ( 'Reporte'[Etiqueta] ),
    FILTER (
        ALLSELECTED ( Mes ),
        ISONORAFTER ( 'Mes'[Mes], MAX ( 'Mes'[Mes] ), DESC )
    )
)

Result:

4.JPG

 

and here is my sample pbix file, please try it.

 

Best Regards,

Lin

Community Support Team _ Lin
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

3 REPLIES 3
Amin_Adham
Regular Visitor

Hi Lin.
Thanks for the advice. it really helped me as well having the same issue.

can you please explain me briefly about the table creation?
why did you create a table and how did it help?

v-lili6-msft
Community Support
Community Support

hi, @rodfernandez 

You could try this way:

Step1:

Create a fact Mes table, then create the relationship with report table by Mes

5.JPG

Step2:

Use this formula to add a measure

Acomulado RCA = 
CALCULATE (
    COUNTA ( 'Reporte'[Etiqueta] ),
    FILTER (
        ALLSELECTED ( Mes ),
        ISONORAFTER ( 'Mes'[Mes], MAX ( 'Mes'[Mes] ), DESC )
    )
)

Result:

4.JPG

 

and here is my sample pbix file, please try it.

 

Best Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Lin.
Thanks for the advice. it really helped me as well having the same issue.

can you please explain me briefly about the table creation?
why did you create a table and how did it help?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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