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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
zoomerin
New Member

Filter on multiple columns

When using CALCULATE, is implicit filter enough or explicit filter is required for multiple columns filtering?

 

I read in a book that explicit filter is required for multiple column filtering, but implicit filter also working in my example. 

Please clarify if there has been any recent update on this. 

Thank you. 

IMG_0117.jpeg

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @zoomerin ,

 

The first thing you can do is to see from which external display filters the current visual object is subject to according to the funnel in the upper right corner.
Also in calculate, if an implicit filter condition in the formula conflicts with an external filter condition, then the internal filter will override the external filter condition.
For example, in table visual, although it is subject to filters from the date and cate tables, the internal filter of the calculate formula created overrides the filter from the cate table.

 

result_ =
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER ( ALL ( Cate[Category] ), Cate[Category] IN { "a", "b", "c" } )
)

 

vkongfanfmsft_2-1711075651080.png

 

Best Regards,
Adamk Kong

 

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

 

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @zoomerin ,

 

The first thing you can do is to see from which external display filters the current visual object is subject to according to the funnel in the upper right corner.
Also in calculate, if an implicit filter condition in the formula conflicts with an external filter condition, then the internal filter will override the external filter condition.
For example, in table visual, although it is subject to filters from the date and cate tables, the internal filter of the calculate formula created overrides the filter from the cate table.

 

result_ =
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER ( ALL ( Cate[Category] ), Cate[Category] IN { "a", "b", "c" } )
)

 

vkongfanfmsft_2-1711075651080.png

 

Best Regards,
Adamk Kong

 

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

 

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.