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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
glauberdmo
Frequent Visitor

Using Anti filtering with Chiclet Slicer (like ALL or ALLEXCEPT)

Filtering a column with a Chiclet Slicer or Slicer gave me different results when I tried to ignore a filter using ALL

 

Example:

 

Using a sample the table  MyTable:

MyTable.png

 

And a Slicer and a Chiclet Slicer with The Field "Marca" at each one:

filters.png

 

Using a measure "Measure" in another table:

Measure = CALCULATE(MAX(MyTable[Field1]);ALL(MyTable[Marca]))

 

Results with Slicer:

Give me the max value of the field "Field1" ignoring the filter Marca (Right!)

 

But using Chiclet Slicer.:

Give me the max value not ignoring the filter Marca (Wrong...)

 

So, how to use ALL & ALLEXCEPT with Chiclet Slicer? There is a way?

 

1 ACCEPTED SOLUTION

Hi @glauberdmo

When making selections on a Chiclet Slicer wih images, both the Category and Image fields are added to the filter context.

 

In your example, to remove the effect of the Chiclet Slicer, you would need to remove filters on (at least) both the Marca and Link columns.

 

Try this measure:

MeasureA =
CALCULATE ( MAX ( MyTable[Field1] ); ALL ( MyTable[Marca]; MyTable[Link] ) )

Regards,

Owen

 


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

View solution in original post

4 REPLIES 4
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @glauberdmo

 

Based on my test, you may get the max value of the field "Field1" ignoring the filter Marca when using Chiclet Slicer as below picture. If it is not your case, please explain more about your expected output.

 

1.png

 

Regards,

Cherie

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-cherch-msft Making the same, brings me same results as you (my expected output), but just adding pictures in chiclet slicer, the results changes!

The only difference of our example is the Field "Link".

I used the pictures from this site

Please, try to put some pictures in your example and test if it continues to work.

Thanks for your answer!

ChicletSlicer falling.png

Hi @glauberdmo

When making selections on a Chiclet Slicer wih images, both the Category and Image fields are added to the filter context.

 

In your example, to remove the effect of the Chiclet Slicer, you would need to remove filters on (at least) both the Marca and Link columns.

 

Try this measure:

MeasureA =
CALCULATE ( MAX ( MyTable[Field1] ); ALL ( MyTable[Marca]; MyTable[Link] ) )

Regards,

Owen

 


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

Thanks!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors