Forum Discussion

tomperro's avatar
tomperro
Helper V
1 year ago
Solved

Filtering Multiple Visuals with Different Filter Criteria

I have 3 KPIs that are measuring different status' of data in the same table. Each KPI has its own set of filters and I am using the KPIs on multiple pages. Is there a way re-use these filters?...
  • Ritaf1983's avatar
    Ritaf1983
    1 year ago

    Hi tomperro 
    You can create measures that are filtered, using calculate dax function...
    like :
    KPI1 = Calculate (sum('table'[something]),filter('table'[Last Name = "Jones"])
    This measure will return filtered result.

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

  • Ritaf1983's avatar
    Ritaf1983
    1 year ago

    This is all we have ....
    Filters / Slicers or filter inside measures..

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