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
Anonymous
Not applicable

Take the latest value in a subcategory and roll it up to category

Hi Team
I have a table which has
Month Cat SubCat. value
Aug. A. B. 10
Aug. A. B. 12. —— latest
Aug. A. C. 13. —— latest
Sep. A. B. 15 —— latest
sep. E. D. 30. - latest

In this at subcat level I want to take the latest value at Month level. For this I created a index col and a simple measure Works at subcat level calculate(sum(value),index = a) # a = max(index)
But the same measure doesn’t work at Cat level as it will take the max of index at cat leve but what I need is at cat level it will sum the underlying sub cats latest values.
So for Aug for Cat A it should he 12+13 = 25 but the current measure gives 13. Sep for A is 15 etc.
Help needed!
1 ACCEPTED SOLUTION
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Try this measure:

 

Measure = SUMX(SUMMARIZE('Table'; 'Table'[Month]; 'Table'[Cat]; 'Table'[SubCat]; "Max"; MAX('Table'[value])); [Max])
 
Ricardo


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

Proud to be a Super User!



View solution in original post

2 REPLIES 2
Anonymous
Not applicable

This is the correct code:

// Assumption:
// [Index] column establishes the temporal order
// among the entries.
// T is your table.

[Your Measure] =
var __indexesOfInterest	=
	SELECTCOLUMNS(
		ADDCOLUMNS(
			SUMMARIZE(
				T,
				T[Month],
				T[Cat],
				T[SubCat]
			),
			"@index",
				CALCULATE( MAX( T[Index] ) )
		),
		"@index", [@index]
	)
var __result =
	CALCULATE(
		SUM( T[Value] ),
		TREATAS(
			__indexesOfInterest,
			T[Index]
		),
		ALL( T )
	)
return
	__result

 

Best

D

camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Try this measure:

 

Measure = SUMX(SUMMARIZE('Table'; 'Table'[Month]; 'Table'[Cat]; 'Table'[SubCat]; "Max"; MAX('Table'[value])); [Max])
 
Ricardo


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

Proud to be a Super User!



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.

Top Solution Authors