Forum Discussion

rebecka's avatar
rebecka
Frequent Visitor
6 years ago

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):
 
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

  • Icey's avatar
    Icey
    Icon for Community Support rankCommunity 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's avatar
      rebecka
      Frequent Visitor

      Hi,

      Yes, already voted for that idea!

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