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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

Summarize and Ranking

Hi All,

I am trying to write a dax to rank the Top3 Model based on there Trust Value.

Here the Trust is Avg Value By Model across all Cluster so i get duplicate rows and hence i thought i will use Summarize to Group the Table by Cluster, Model and Trust and pick top3. I get an error though using the below dax 
"Multiple column Cannot be convereted to scalar value"

 

ModelClusterAvgtrustByModel
ArimaA50

Arima

B50
ArimaC50
EtsA40
EtsB40
EtsC40
ProphetA60
ProphetB60
ProphetC60

 

 

 

TOP3Model1 = 
FILTER(SUMMARIZECOLUMNS('Submission KPIs'[Cluster_long], 'Submission KPIs'[Model_Name], "AvgRankByModel", AVERAGE('Submission KPIs'[Trust] )),
CONCATENATEX(
        TOPN(
            3
            ,'Submission KPIs'
            ,[AvgRankByModel]
            ,DESC
        )
        ,'Submission KPIs'[Model_Name]&"("&FORMAT([AvgRankByModel],"##%")&")"
        ,", "
        ,[AvgRankByModel]
    ))

 

 

 

4 REPLIES 4
Anonymous
Not applicable

Hi @Anonymous,

Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.

If these also don't help, please share more detailed information to help us clarify your scenario to test.

How to Get Your Question Answered Quickly 

Regards,

Xiaoxin Sheng

Greg_Deckler
Community Champion
Community Champion

@Anonymous That code is returning a table and measures have to return scalar values. Try this:

TOP3Model1 = 
  VAR __Table = SUMMARIZECOLUMNS('Submission KPIs'[Cluster_long], 'Submission KPIs'[Model_Name], "AvgRankByModel", AVERAGE('Submission KPIs'[Trust] )
RETURN
CONCATENATEX(
        TOPN(
            3
            ,__Table
            ,[AvgRankByModel]
            ,DESC
        )
        ,'Submission KPIs'[Model_Name]&"("&FORMAT([AvgRankByModel],"##%")&")"
        ,", "
        ,[AvgRankByModel]
    ))


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

Thanks @Greg_Deckler , i made a change to it and it worked. Can you also help me how can i reverse the order of the result. Current Ouptut is ETS(40%) ,Arima(50%), Prophet(60%), i think its because of the FORMAT String. How can i make it output display as  Prophet(60%), Arima(50%), ETS(40%)? 

Anonymous
Not applicable

Hi @Anonymous,

Perhaps you can try to modify the sort parameter DESC to ASC if it help with your requirement.

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.