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
nckpedersen
Helper I
Helper I

Measure Request: Value is within TopN, True or False

I have two tables, Contacts and Accounts. I want to apply a filter on Contacts according to whether or not the Account it belongs to is within the Top 2 Accounts by Sales. So given the table below, I'd want to only see Bob and Alice.

 

I realize I can use the filters option but need the formula for a more complex situation

 

Contacts

NameAccount
JohnABC Corp
MichaelXYZ Inc
BobTest, LLC
AliceExample Inc

 

Accounts

SalesAccount
$100ABC Corp
$1000XYZ Inc
$5000Test, LLC
$10,000Example Inc
1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @nckpedersen ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want. 

1. Create two measures as below to judge if the account is Top 2 accounts

Rank = RANKX ( ALLSELECTED ( 'Accounts' ), CALCULATE ( SUM ( 'Accounts'[Sales] ) ) )
Flag = 
VAR _tab =
    CALCULATETABLE (
        VALUES ( 'Accounts'[Account] ),
        FILTER ( 'Accounts', [Rank] <= 2 )
    )
RETURN
    IF ( SELECTEDVALUE ( 'Contacts'[Account] ) IN _tab, 1, 0 )

2. Create a table visual and apply the visual-level filter with the condition(Flag is 1)

yingyinr_1-1664260723566.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

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

View solution in original post

3 REPLIES 3
v-yiruan-msft
Community Support
Community Support

Hi @nckpedersen ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want. 

1. Create two measures as below to judge if the account is Top 2 accounts

Rank = RANKX ( ALLSELECTED ( 'Accounts' ), CALCULATE ( SUM ( 'Accounts'[Sales] ) ) )
Flag = 
VAR _tab =
    CALCULATETABLE (
        VALUES ( 'Accounts'[Account] ),
        FILTER ( 'Accounts', [Rank] <= 2 )
    )
RETURN
    IF ( SELECTEDVALUE ( 'Contacts'[Account] ) IN _tab, 1, 0 )

2. Create a table visual and apply the visual-level filter with the condition(Flag is 1)

yingyinr_1-1664260723566.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

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

This is wonderful, thank you! I feel like you just opened an entirely new area of Power BI for me!

amitchandak
Super User
Super User

@nckpedersen , My advice would be create TOP2 measure and use in Visual

 

TOPN: https://youtu.be/QIVEFp-QiOk

 

Otherwise first create a rank in Accounts (All new columns below )

 

Rank = ranxk(Accounts, [Sales],,desc, dense)

 

Then copy that to table Contacts

 

Rank contact = Maxx(filter(Accounts, Accounts[Account] = Contacts [Account] && Accounts[Rank]<=2), Accounts[Rank])

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.