cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
adavid999
Helper V
Helper V

show measure result unaffected by slicers

Hello,

I have the following measure and wanted to know what I need to do to replicate the measure and adjust it to show an 'all' figure unaffected by on screen slicer visuals. (this way I can use it to show slicer selections vs an 'all' figure.)

The measure is:

Result = 
VAR denominator =
    CALCULATE (
        SUM (Table1[sub] ),
       Table1[pop] = 1
    )
VAR numerator =
    CALCULATE (
        SUM(Table1[num] ),
        Table1[empnum]<> 0
            && Table1[pop] = 1
    )
RETURN
    numerator/denominator

 Any advice welcome.

Thanks

1 ACCEPTED SOLUTION
rbriga
Super User
Super User

You may create a second metric:

Result (All)=
CALCULATE(
[Result],
REMOVEFILTERS(X)
)

 

Where X is a list of on-screen slicers you have in place, for example:

REMOVEFILTERS(Customers[Country],Items[Category])

You can leave it as REMOVEFILTERS(), but it may be an overkill depending on the context, so you better specify the sliced fields.

-------------------------
Data analyst by day, hockey goalie by night.
Did I help? Then please hit that "kudos" or "accept as a solution" button!

View solution in original post

1 REPLY 1
rbriga
Super User
Super User

You may create a second metric:

Result (All)=
CALCULATE(
[Result],
REMOVEFILTERS(X)
)

 

Where X is a list of on-screen slicers you have in place, for example:

REMOVEFILTERS(Customers[Country],Items[Category])

You can leave it as REMOVEFILTERS(), but it may be an overkill depending on the context, so you better specify the sliced fields.

-------------------------
Data analyst by day, hockey goalie by night.
Did I help? Then please hit that "kudos" or "accept as a solution" button!

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors