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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Power_MN
Helper I
Helper I

Show specific value from table visual

Hello everybody,

 

I get stuck with one issue.

I have the following table visual.

 

511CA48F-C2D5-4B77-A5B5-9104F1EFC363.jpeg


The "Customers" are taken from the dataset. The "Price" is calculated with a measure that is dependent on a SelectedValue Slicer.

8C16E15E-B6DE-470E-B9A1-D3351863BBC7.jpeg

 

However, only the Price of "Customer A" is changed/ adjusted there.

 

The Rank ist calculated with a measure that uses the value of the "Price".

 

I now need a DAX-command that outputs the Rank of "Customer A" so that I can display it on a card.

 

I've already tried and used the measure for the rank and finally applied a filter to the visual (card). However, this works because the measure calculated the "Rank" only with the "Customer A". "Customer A" is therefore always in first place.

 

Thank you for your help!

Kind regards

Michael

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

// Maybe something like this...

[Customer A Rank] =
var VisibleCustomers =
    CALCULATETABLE(
        DISTINCT( T[Customer] ),
        ALLSELECTED( Customer )
    )
RETURN
    CALCULATE(
        RANKX(
            VisibleCustomers,
            [Price],,
            ASC, DENSE
        ),
        T[Customer] = "A"
    )

View solution in original post

1 REPLY 1
Anonymous
Not applicable

// Maybe something like this...

[Customer A Rank] =
var VisibleCustomers =
    CALCULATETABLE(
        DISTINCT( T[Customer] ),
        ALLSELECTED( Customer )
    )
RETURN
    CALCULATE(
        RANKX(
            VisibleCustomers,
            [Price],,
            ASC, DENSE
        ),
        T[Customer] = "A"
    )

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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