Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
giuliapiazza94
Helper IV
Helper IV

Exclude all filters except one

Hi guys,

I want to do a measure that is filtered by only one filter, so I want to exsclude all the others.

I have tried using ALL() but there are many, many, many tables so I'm looking for a function faster.

 

Thank you all 😁

1 ACCEPTED SOLUTION
smpa01
Super User
Super User

@giuliapiazza94  does ALLEXCEPT helps your scenario

 

ALLEXCEPT(<tbl>,<tbl[onlyColumnToKeepFilter]>)

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

5 REPLIES 5
bcdobbs
Super User
Super User

Best way is to remove all filters and then add back the specifc column you need.

 

Like:

 

Example = 
    CALCULATE(
        [Your Measure]
        REMOVEFILTERS(),
        VALUES('Product'[Brand])
    )

 



Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

best solution ever!!!
Thankyou. 


mh2587
Super User
Super User

try ALLSELECTED FUNCTION


Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



smpa01
Super User
Super User

@giuliapiazza94  does ALLEXCEPT helps your scenario

 

ALLEXCEPT(<tbl>,<tbl[onlyColumnToKeepFilter]>)

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

I've tried but it doesn't work

 

Altri ricavi TOT = CALCULATE([Altri ricavi], ALLEXCEPT(Calendario, 'Calendario'[Anno]))

 

giuliapiazza94_0-1639123160321.png

giuliapiazza94_1-1639123199899.png

 

The total should be 293795,54, not 78,18

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.

Top Solution Authors