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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
AntWickenden
Frequent Visitor

Selecting highest result from 4 values and displaying a description for that.

I have been replicating a retired excel KPI pack within Power BI and have come across something I need help with.

 

The KPI pack relates to shipping and includes delays in the door to door shipping process broken out into the following elements.

 

1) Days Late at Origin Delivery

2) Days Late During Origin Consolidation

3) Days Late During Vessel at Sea

4) Days Late During Delivery to DC

 

In the dataset, I have some calculations which determines where the biggest delay is happening and I need to return the description as listed above for those delays.

 

I have created a DAX measure which does this for me as follows...

 

Maximum Delay Reason =
VAR MaxPrice =
 MAX( 'Grouped: PO_Level (OINDC Delay Analysis)'[Value] )
RETURN
 CALCULATE (
 SELECTEDVALUE ( 'Grouped: PO_Level (OINDC Delay Analysis)'[Delay Reason] ),
 'Grouped: PO_Level (OINDC Delay Analysis)'[Value] = MaxPrice
 )

 

This works, except I have an issue if the biggest delay is the same for 2 of the reasons...example as follows...

 

Days Late at Origin Delivery = 4 days

Days Late During Origin Consolidation = 2 days

Days Late During Vessel at Sea = 4 days

Days Late During Delivery to DC = 1 day

 

In this case, PowerBi does not know how to handle the fact there are 2 highest reasons and returns a blank instead.

 

Any ideas on how I can fix this? I'm happy for any method to be used to decide on a reason code (sort alphabetically maybe) as long as I get a reason instead of a blank.

 

Many thanks in advance

 

2 REPLIES 2
amitchandak
Super User
Super User

@AntWickenden , My advice would be to create Rank or TOPN and use them as a visual level filter or use the Index function.

 

In the above case also create a count measure and plot with Delay Reason

 

TOPN: https://youtu.be/QIVEFp-QiOk
TOPN with Numeric Parameter -https://youtu.be/cN8AO3_vmlY?t=26448

 

Power BI Index function: Top/Bottom Performer by name and value- https://youtu.be/HPhzzCwe10U

Thanks @amitchandak 
Let me try that and see what happens...

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

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