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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
MiroslawW
Frequent Visitor

Summing only max value from a day.

Hi,

I have got problem to make a pivot table that summerize maximum hours from a day schedule (I have copied only piece of it):

 

START DATEEND DATENAMETRAININGTYPEHOURSINSTRUCTORRESULT
21/01/201923/01/2019NAME1  22.00MWPASS
21/01/201921/01/2019NAME2  6.00NBPASS
21/01/201922/01/2019NAME3  6.00NBPASS
23/01/201923/01/2019NAME4  4.50NBPASS

 

I want to make a pivot table that summarize hours by instructor but i dont know how to make a measure in a DAX. 

 

My pivot table looks like this:

 

Sum of HOURSColumn Labels 
Row LabelsMWNBGrand Total
2019157233.5391
Qtr1157233.5391
Grand Total157233.5391

 

I want to sum only max value from 21/01/2019 of instructor NB. Is there any measure that I could use?

Thank You,

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

You should be able to do something like:

 

Measure 6 = 
VAR __date = MAX([START DATE])
VAR __instructor = MAX([INSTRUCTOR])
VAR __table = SUMMARIZE('Table8',[START DATE],[INSTRUCTOR],"__hours",MAX([HOURS]))
RETURN
MAXX(__table,[START DATE]=__date && [INSTRUCTOR]=__instructor)


Follow on LinkedIn
@ 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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

You should be able to do something like:

 

Measure 6 = 
VAR __date = MAX([START DATE])
VAR __instructor = MAX([INSTRUCTOR])
VAR __table = SUMMARIZE('Table8',[START DATE],[INSTRUCTOR],"__hours",MAX([HOURS]))
RETURN
MAXX(__table,[START DATE]=__date && [INSTRUCTOR]=__instructor)


Follow on LinkedIn
@ 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!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.