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
jaleef
Regular Visitor

getting a column value based on the score

hi ,

 i have matrix below  where each case owner has score based on the total number of case 

jaleef_0-1621525712305.png

i would like to get the case owner who has max score for the current month and last month , to find score am using 

score = (CALCULATE(DIVIDE([Cases Resolved Within TAT] , [Total Case])))
 
i have current month total case and current month resolved case within tat , now i need the user name to be displayed in a card who has the max score 
1 ACCEPTED SOLUTION

@jaleef , sorry small modification

 

top OWNER THIS MONTH = CALCULATE(max(incidents[owninguser.fullname]),TOPN(1,allselected(incidents[owninguser.fullname]),[current month score],DESC),VALUES(incidents[owninguser.fullname]))

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@jaleef , Try measures like

 

last MTD score = CALCULATE([score],DATESMTD(dateadd('Date'[Date],-1,MONTH)))

 

top OWNER THIS MONTH = CALCULATE([score],TOPN(1,allselected(Table[case owner]),[score],DESC),VALUES(Table[case owner]))

 

top OWNER lAST MONTH CALCULATE([score LMTD],TOPN(1,allselected(Table[case owner]),[score LMTD],DESC),VALUES(Table[case owner]))

 

Use date table and time intelligence for last two measure

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

 

 

 

hi, its giving me some value not i expected 

 

jaleef_0-1621527260896.png

i used 

current month score = DIVIDE([Current month resolved case], [Current month Total case]) then 
i used 
top OWNER THIS MONTH = CALCULATE([current month score],TOPN(1,allselected(incidents[owninguser.fullname]),[current month score],DESC),VALUES(incidents[owninguser.fullname]))
 
its giving me some number , i actually need top scorer owning user column value 

@jaleef , sorry small modification

 

top OWNER THIS MONTH = CALCULATE(max(incidents[owninguser.fullname]),TOPN(1,allselected(incidents[owninguser.fullname]),[current month score],DESC),VALUES(incidents[owninguser.fullname]))

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.