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
Anonymous
Not applicable

Top 5 Variances DAX

Hey All, 

 

How would I create a DAX formula to take the top 5 variance over OR under a threshold amount of $12k? 

 

Any help would be much appreciated. 

1 ACCEPTED SOLUTION

HI @Anonymous,

 

You can try to use following measure if it works for your scenario.

Rank =
RANKX (
    ALL ( Table ),
    CALCULATE ( SUM ( Table[Variances] ), ALLEXCEPT ( Table, Table[Country] ) ),
    ,
    ASC,
    DENSE
)

 

If not help, please share a table with some sample data to test.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

4 REPLIES 4
Greg_Deckler
Super User
Super User

Sample data and expected results would assist greatly.

@ 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!:
The Definitive Guide to Power Query (M)

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

@Greg_Deckler Here is the Variance and country column. (Attached)

 

Expected Results would Top 5 Var over sale's plan by Country:

 

1.France -12,050

2. USA - (12,050)

3. Germany - 50,000

4. Sweden - 75,000

5. Canada - (100,000)

Var Question.PNG

 

Anonymous
Not applicable

Can anyone give some insight on this topic?

HI @Anonymous,

 

You can try to use following measure if it works for your scenario.

Rank =
RANKX (
    ALL ( Table ),
    CALCULATE ( SUM ( Table[Variances] ), ALLEXCEPT ( Table, Table[Country] ) ),
    ,
    ASC,
    DENSE
)

 

If not help, please share a table with some sample data to test.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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