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
sdrfghjkl
Frequent Visitor

Dynamic Ranking measure and a card Visual

Hi, 

 

I need some help with creating Dynamic Ranking and extracting a rank based on a particular column as a filter. My table has the following columns 

 

Date brandbrand_typecategorycustomerrating
01-Sep-22BRITANNIACompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22BRITANNIACompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22PARLECompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22BRITANNIACompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22BRITANNIACompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22BRITANNIACompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22BRITANNIACompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22CADBURYCompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22BRITANNIACompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22PARLECompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22PARLECompetitionBISCUITSDemo-Biscuits4.2
01-Sep-22PARLECompetitionBISCUITSDemo-Biscuits4.2

 

I basically need to create a measure that Ranks Each brand based on the average rating and extract the value where brand type = Own.  I am trying to construct a Card visual that shows the rank for our own brands of our customers, 

 

The hierarchy of ranking should be Customer - > Brands and I need to extract the value of brand rank where brand type = Own. 

 

the current measure we have doesn't solve the purpose. 

Brand Rank = RANKX(ALL(Customer_Feedback[brand]),'Measure'[Avg Rank],,DESC,Dense)
 
I am also leaving a link to the entire sample data if that will help : Sample Data 
 
Any help on this will be greatly appreciated. 
 
the objective is to show a card visual like this where we show only the own brands rank for each customer: 
 
sdrfghjkl_0-1666196550586.png

 

Thanks much! 

 

 

3 REPLIES 3
v-jianboli-msft
Community Support
Community Support

Hi @sdrfghjkl ,

 

Please try:

Rank =
VAR _a =
    ADDCOLUMNS (
        ALL ( Customer_Feedback ),
        "Rank",
            RANKX (
                ALL ( Customer_Feedback[brand] ),
                CALCULATE (
                    AVERAGE ( Customer_Feedback[rating] ),
                    FILTER (
                        ALL ( 'Customer_Feedback' ),
                        [brand] = EARLIER ( Customer_Feedback[brand] )
                    )
                ),
                ,
                DESC,
                DENSE
            )
    )
RETURN
    MAXX (
        FILTER (
            _a,
            [brand_type] = "Own"
                && [customer] = SELECTEDVALUE ( Customer_Feedback[customer] )
        ),
        [Rank]
    )

Final output:

vjianbolimsft_0-1666232550328.png

vjianbolimsft_1-1666232562737.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

Sir, 

 

The above solution doesn't work. It doesn't take the customer into account and hence it ranks the brands across all customers. So I tried to tweak the measure slightly and updated the first half of the measure in constructing the dynamic table. 

 

But the problem is the ranking is still wrong. If you see the below picture the first two brands have differnt ratings but are still ranked as 1 

 

sdrfghjkl_0-1666780675175.png

 

Complete measure 

Rank =
VAR _a =
     ADDCOLUMNS (
        ALL ( Customer_Feedback[customer],Customer_Feedback[brand],Customer_Feedback[brand_type]),
        "Rank",
            RANKX (
                ALL (Customer_Feedback[brand] ),
                CALCULATE (
                    AVERAGE ( Customer_Feedback[rating] ),
                    FILTER (
                        ALL (Customer_Feedback[brand]),
                        [brand] = EARLIER ( Customer_Feedback[brand] )
                    )
                ),,
                DESC,
                DENSE),
                "Rating",
                CALCULATE (
                    AVERAGE ( Customer_Feedback[rating] ),
                    FILTER (
                        ALL (Customer_Feedback[brand]),
                        [brand] = EARLIER ( Customer_Feedback[brand] )
                    )
                )
            )
RETURN
    MAXX (
        FILTER (
            _a,
            [brand_type] = "Own"
                && [customer] = SELECTEDVALUE ( Customer_Feedback[customer] )
        ),
        [Rank]
    )
sdrfghjkl
Frequent Visitor

@jdbuchanan71  sir sorry for tagging you directly here. I did see a response from you for a similar problem statement and I used that as a reference too. Tagging to see if you can help with this 

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.