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

Max Value of the Sum of other Column

Hello My Friends,

 


How Are you?

 

I really need some help

 

I have some Data like:

 

 

NameDateClassValue
A01/10/2015One100
B01/10/2015Two100
C03/10/2015One205
D12/31/2015One320
E08/10/2016Two130
F09/11/2016Three30
G09/12/2016Three60
H10/20/2016Three90

 

And this Table Goes on with a lot of others rows.

 

I wanna Show inside a Card the "Class" wich presents the higher SUM of its VALUE's  on a Card.

 

At the exemple above i would put a Card in my Dashboard and it would be written: "One" , Because "One" VALUE's Sum  is Higher than "Two" VALUE's Sum or Three VALUE's Sums.

 

Does anyone knows how to Create a Measure to do this?

 

I Tried something like:

 

=MAXX( TOPN ( 1 ; DataSource ; DataSource[Value] ; Desc) ; DataSource[Class])

 

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

I would do something like this:

 

Measure =
  VAR __Table = 
    SUMMARIZE(
      'Table',
      [Class],
      "__Sum",SUM('Table'[Value])
    )
  VAR __Max = MAXX(__Table,[__Sum])
RETURN
  MAXX(FILTER(__Table,[__Sum] = __Max),[Class])

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

[Best Class] =
var __bestClasses =
	topn(1,
		VALUES( T[Class] ),
		CALCULATE( SUM( T[Value] ) ),
		DESC
	)
// You have to do this in case
// you have ties.
var __toString =
	CONCATENATEX(
		__bestClasses,
		T[Class],
		", ",
		T[Class],
		ASC
	)
return
	__toString
	
// If you don't want ties, then
// you can return the first or last
// class (alphabetically). Here's
// the version:
[Best Class] =
	// Remove the one you don't want
	MINX( // for the first class
	MAXX( // for the last class
		topn(1,
			VALUES( T[Class] ),
			CALCULATE( SUM( T[Value] ) ),
			DESC
		),
		T[Class]
	)

 

Best

D

Greg_Deckler
Super User
Super User

I would do something like this:

 

Measure =
  VAR __Table = 
    SUMMARIZE(
      'Table',
      [Class],
      "__Sum",SUM('Table'[Value])
    )
  VAR __Max = MAXX(__Table,[__Sum])
RETURN
  MAXX(FILTER(__Table,[__Sum] = __Max),[Class])

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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