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! Request now

Reply
ClearRide
Frequent Visitor

How to make a column ignore slicer

This is my table: 

SalesTable

Person

Sales

Sales Missed

Missed Sale %

A

10

2

20%

B

20

1

5%

C

30

3

10%

 

The only measure in the table: Missed Sales % = Divide (sum(SalesTable[Sales]), sum(SalesTable[Sales missed])

I have a slicer and or button that changes the value of Sales and Sales Missed (let's say reduces Sales by 1), which in turn changes the value of Missed Sales %. Is there a way to keep Missed Sale % unchanged/static when I press that slicer/button?

1 ACCEPTED SOLUTION
aj1973
Community Champion
Community Champion

Hi @ClearRide 

Use this

Missed Sales % =
VAR _Div = Divide (sum(SalesTable[Sales]), sum(SalesTable[Sales missed])

RETURN
CALCULATE( _Div , ALLEXCEPT(SalesTable , SalesTable[Sales Missed], SalesTable[PersonSales] ))

 

Regards
Amine Jerbi

If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook

View solution in original post

1 REPLY 1
aj1973
Community Champion
Community Champion

Hi @ClearRide 

Use this

Missed Sales % =
VAR _Div = Divide (sum(SalesTable[Sales]), sum(SalesTable[Sales missed])

RETURN
CALCULATE( _Div , ALLEXCEPT(SalesTable , SalesTable[Sales Missed], SalesTable[PersonSales] ))

 

Regards
Amine Jerbi

If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook

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