Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I'm trying to display the Top and Bottom 5 Advisors by Cumulative Flows. There is an AllClients fact table with [Net Flows] in it and all the relevant lookup tables in star schema including AdvisorFirmInfo2 and FundInfo2.
My Ranking formulas are below.
Rank (Asc) of Cumul Flows = IF ( HASONEVALUE ( AdvisorFirmInfo2[Advisor Firm] ), RANKX ( ALLSELECTED ( AdvisorFirmInfo2 ), CALCULATE ( SUMX ( AllClients, [Cumulative Flows])), , ASC, DENSE ) ) Top and Bottom 10 by Cumul Flows = if(OR([Rank (Asc) of Cumul Flows] <='TopN'[TopN Value],[Rank (Desc) of Cumul Flows]<='TopN'[TopN Value]),1,0)
And I get part of the desired result below.
Which let's me make this chart.
But all the Advisors are invested via one of several funds and I want to add the Fund to the legend of the chart. When I do, I get the following chart which has far more advisors than I want.
Converting it back to a table to analyse it I get this.
How can I change my Ranking formulae to let me rank on the Cumulative Flows across all funds per Advisor and then display only the Top and Bottom N Advisors while showing the split by Fund?
My Cumulative Flows measure is as follows:
Cumulative Flows = CALCULATE ( SUM ( AllClients[Net Flows] ) , Values(ClientInfo2[Client Name]), Values(AdvisorFirmInfo2[Advisor Firm]), VALUES(FundInfo[Fund]) )
Hi @Johnsnowlife,
Could you try the formula below to see if it works?
Rank (Asc) of Cumul Flows = IF ( HASONEVALUE ( AdvisorFirmInfo2[Advisor Firm] ), RANKX ( ALLSELECTED ( AdvisorFirmInfo2 ), CALCULATE ( SUMX ( AllClients, AllClients[Net Flows] ), ALLEXCEPT ( AdvisorFirmInfo2, AdvisorFirmInfo2[Advisor Firm] ) ), , ASC, DENSE ) )
Regards
That didn't work. It gives me a similar result - far more advisors than there should be.
Hi @Johnsnowlife,
Could you post your table structures(including the relationships) with some sample/mock data which can help us reproduce this issue, so that we can do some tests to better assist on it? It's even better to share a sample pbix file(with just some mock data) which can reproduce the issue. You can upload it to OneDrive or Dropbox and post the link here. Do mask sensitive data before uploading.
Regards
Hi @Johnsnowlife,
Based on my test, the formulas below should work in your scenario.
Rank (Asc) of Cumul Flows = IF ( HASONEVALUE ( AdvisorFirmInfo2[Public Name] ), RANKX ( ALL(AdvisorFirmInfo2[Public Name]), CALCULATE ( SUM ( AllClients[Net Flows] ),ALL(FundInfo[Fund]),ALLEXCEPT(AdvisorFirmInfo2,AdvisorFirmInfo2[Public Name])), , ASC, DENSE ) )
Rank (Desc) of Cumul Flows = IF ( HASONEVALUE ( AdvisorFirmInfo2[Public Name] ), RANKX ( ALL(AdvisorFirmInfo2[Public Name]), CALCULATE ( SUM ( AllClients[Net Flows] ),ALL(FundInfo[Fund]),ALLEXCEPT(AdvisorFirmInfo2,AdvisorFirmInfo2[Public Name])), , DESC, DENSE ) )
Here is the modified pbix file for your reference.
Regards
Fantastic! I understand why you can change SUMX to SUM. But can you explain why passing the ALL(Funds) function helps?
To simplify it, I can also take out the "ALLEXCEPT" function like this. Or will there be unintended consequences like this?
Rank (Desc) of Cumul Flows = IF ( HASONEVALUE ( AdvisorFirmInfo2[Advisor Firm] ), RANKX ( ALLSELECTED ( AdvisorFirmInfo2 ), CALCULATE (SUM (AllClients[Net Flows]), ALL(FundInfo[Fund]) ), , DESC, DENSE ) )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
123 | |
78 | |
49 | |
38 | |
37 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |