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
Fidzi8
Helper IV
Helper IV

Priority

Hi,

I need a advice.

 

I need in PBI create new column where will be result column "F".

 

Column "F" (Priority) is RATING according to minimum Haulier price (column "D").
But when column "E" (Destination exclusivity) is 100% so column "F" (Priority) is 1. 
 priority.png

 

Thank you
Ondřej 

 

 

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

Here is a column expression that shows one way to do it.  Just replace Price with your actual table name.

 

Priority =
VAR vThisCode = 'Price'[Code]
VAR vThisPrice = 'Price'[Haulier price]
VAR vRank =
    RANKX (
        SUMMARIZE (
            FILTER ( 'Price', 'Price'[Code] = vThisCode ),
            'Price'[Haulier price]
        ),
        'Price'[Haulier price],
        vThisPrice,
        ASC
    )
RETURN
    IF ( 'Price'[Destination exclusivity] = 11vRank )

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

2 REPLIES 2
mahoneypat
Employee
Employee

Here is a column expression that shows one way to do it.  Just replace Price with your actual table name.

 

Priority =
VAR vThisCode = 'Price'[Code]
VAR vThisPrice = 'Price'[Haulier price]
VAR vRank =
    RANKX (
        SUMMARIZE (
            FILTER ( 'Price', 'Price'[Code] = vThisCode ),
            'Price'[Haulier price]
        ),
        'Price'[Haulier price],
        vThisPrice,
        ASC
    )
RETURN
    IF ( 'Price'[Destination exclusivity] = 11vRank )

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


This formula is perfect. Thank you @mahoneypat 

Ondřej

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.