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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Syndicate_Admin
Administrator
Administrator

Cumulative of an undated ID count

Hello.

I need a cumulative of an ID count I already have, but I'm not using dates for the count, I'm using a group I made.

The group:

odguzman_2-1724860809384.png

The ID count:

IDs Count = COUNT('Din Table'[ID])


And I get the following:

odguzman_0-1724860663319.png

But I'd like to do the cumulative something like that I did in excel.

odguzman_3-1724860893898.png

Best regards.

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

Hello

I already managed to do it using the "Quick Measure" function inside I selected the values I required and it gave me this DAX:

Total acumulado de Recuento IDs en CQI_SUM Bins = 
CALCULATE(
	[Recuento IDs],
	FILTER(
		ALLSELECTED('Tabla Din'[CQI_SUM Bins]),
		ISONORAFTER('Tabla Din'[CQI_SUM Bins], MAX('Tabla Din'[CQI_SUM Bins]), DESC)
	)
)

odguzman_0-1724882841793.png
odguzman_1-1724882870371.png

View solution in original post

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

Hello

I already managed to do it using the "Quick Measure" function inside I selected the values I required and it gave me this DAX:

Total acumulado de Recuento IDs en CQI_SUM Bins = 
CALCULATE(
	[Recuento IDs],
	FILTER(
		ALLSELECTED('Tabla Din'[CQI_SUM Bins]),
		ISONORAFTER('Tabla Din'[CQI_SUM Bins], MAX('Tabla Din'[CQI_SUM Bins]), DESC)
	)
)

odguzman_0-1724882841793.png
odguzman_1-1724882870371.png

muhammad_786_1
Resolver V
Resolver V

Hi @Syndicate_Admin 

 

You can find the solution by following the steps provided in this post:


https://community.fabric.microsoft.com/t5/Desktop/Cumulative-Total/td-p/43115

 

Best Regards,
Muhammad Yousaf

 

If this post helps, then please consider "Accept it as the solution" to help the other members find it more quickly.

 

LinkedIn

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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