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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Anonymous
Not applicable

TOP 10 countries using DAX code

Hello Experts,
I want to help me to write the DAX code to show only the TOP 10 Countries based on Revenue.

 

xxxx.png

2 ACCEPTED SOLUTIONS

@Anonymous it should work :))

SpartaBI_0-1653218254374.png

What is [Att_Value1]? Is that a column or a measure?

View solution in original post

@Anonymous no worries 🙂
This is for the scenario where the total is for all (just change it to your names and 10 instead of 3):

 

 

Top 3 Countries By Sales = 
VAR _countries = TOPN(3, ALLSELECTED(Customer[Country]),[Sales Amount])
RETURN
    IF(
        ISINSCOPE(Customer[Country]),
        CALCULATE(
            [Sales Amount],
            KEEPFILTERS(_countries)
        ),
        [Sales Amount]
    )

 

 

SpartaBI_0-1653219251405.png2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

View solution in original post

7 REPLIES 7
SpartaBI
Community Champion
Community Champion

@Anonymous 

 

Top 10 Countries By Revenues = 
VAR _top10_countries = TOPN(10, ALLSELECTED('Table'[Country]),[Revenues Measure])
RETURN
    CALCULATE(
        [Sales Amount],
        KEEPFILTERS(_top10_countries)
    )

 

 


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

Anonymous
Not applicable

@SpartaBI 
its dose not worked,
see the right visual which I used a filter pane to show  the top 10 countries. 
In your code dax which is in left visual it dose give the top 10 countries and the numbers are nor correct.

 

xcxc.png

@Anonymous what is the column you use in the matrix for country, and what ia the base measure?

Anonymous
Not applicable

its same, I know you sae different name in code and visual, but its same the coulm and measure. 

@SpartaBI 

@Anonymous it should work :))

SpartaBI_0-1653218254374.png

What is [Att_Value1]? Is that a column or a measure?

Anonymous
Not applicable

Its worked. So Sorry I had a mistake. I will Accept your solurtions.

I have another Question: 
If I want  to show top 10 countries and show me the grand total of each country  out of all countries ( I dont want to give  the grand total  of Top 10 countries  only). 

@Anonymous no worries 🙂
This is for the scenario where the total is for all (just change it to your names and 10 instead of 3):

 

 

Top 3 Countries By Sales = 
VAR _countries = TOPN(3, ALLSELECTED(Customer[Country]),[Sales Amount])
RETURN
    IF(
        ISINSCOPE(Customer[Country]),
        CALCULATE(
            [Sales Amount],
            KEEPFILTERS(_countries)
        ),
        [Sales Amount]
    )

 

 

SpartaBI_0-1653219251405.png2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png

Showcase Report – Contoso By SpartaBI


SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Full-Logo11.png

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.