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
rebecka
Frequent Visitor

Top N filter on page level

Hi,

I have a dynamic Top N filter on organizations, and that is presented in one visual. And that works fine.

But now I want all other visuals to be filtered also on these Top N organizations.

But I don't get that to work.

This is my DAX code:

 
SelectedTopNNumber = IF(HASONEVALUE('TopN'[Top]);Min('TopN'[Top]);10)
AntalEval = COUNT('table1'[StatisticKey])
OrgRankByTopN = IF(HASONEVALUE('dimOrg'[OrgName]);RANKX(ALLSELECTED('dimOrg'[OrgName]); [AntalEval]))
ShouldOrgBeIncluded = IF([OrgRankByTopN]<=[SelectedTopNNumber];1;0)
And this is how the visuals look (with their filters):
Skärmklipp1.PNGSkärmklipp2.PNG
 
So ShouldOrgBeIncluded is used as filter on the first visual, but I want it to be on page filter level (since it's a measure).
I can add the ShouldOrgBeIncluded measure as a filter on the other visual too (and add the
OrgName under Legend) but that does not work properly.
Can I fix this with some more complex DAX code or some other way?
2 REPLIES 2
Icey
Community Support
Community Support

Hi @rebecka ,

Power BI accepts measures as filters only at a single visual level, and it does not accept measures as filters at the page level nor at the report level. You can vote this idea to make it coming soon.

 

Best Regards,

Icey

 

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

rebecka
Frequent Visitor

Hi,

Yes, already voted for that idea!

I was wondering if I can fix it with som clever DAX instead...

 

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.