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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors