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
160475
Helper I
Helper I

ignoring total value

dears i have the table below i would like to apply filter but ignore total value so i can show right percentage can anyone help 

160475_0-1667372087556.png

 

1 ACCEPTED SOLUTION
visheshjain
Impactful Individual
Impactful Individual

In that case use ISINSCOPE()

 

Something on the lines of:

Measure = 
IF(

     ISINSCOPE('Column name used on the rows of the Matrix'),
     [total tickets],

     CALCULATE([total tickets],ALL(Query1[WT_MNS]))
)

This should keep the filters on only the total while filtering the values in the matix.

 

Hope this helps.

 

Thank you,

Vishesh Jain

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

Thank you,
Vishesh Jain

Proud to be a Super User!



View solution in original post

9 REPLIES 9
mariussve1
Super User
Super User

Hi,

 

In the measure you write:

 

IF ( HASONEVALUE ( Table[Column] ), "measure for tickets count", BLANK ()

)

 

Table[Column] = The table and column you have in the Table/Matrix visual

 

Br

Marius


Br
Marius
BI Fabrikken
www.bifabrikken.no

doens't work 

visheshjain
Impactful Individual
Impactful Individual

Hi @160475,

 

From what I have understood, for the denominator when dividing you can use the ALL() function, so that will ignore the filters.

 

Hope this helps.

 

Thank you,

Vishesh Jain

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

Thank you,
Vishesh Jain

Proud to be a Super User!



i have done this dax : 

Measure = CALCULATE([total tickets],ALL(Query1[TICKETS])) 
but still the total change once i apply filtir 
visheshjain
Impactful Individual
Impactful Individual

Hi @160475,

 

The column that you are using in the measure, is that the same column that you are using on the slicer/filter?

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

Thank you,
Vishesh Jain

Proud to be a Super User!



no its not the same my filter is another column 

visheshjain
Impactful Individual
Impactful Individual

In that case you will need to use that column.

 

It would be really helpful if you could please upload a sample file with the desired result, as it will help us understand the problem better.

 

Thank you,

Vishesh Jain

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

Thank you,
Vishesh Jain

Proud to be a Super User!



i got you and changed the measure to this 

Measure = CALCULATE([total tickets],ALL(Query1[WT_MNS])) 
but it locked the whole column i just want to lock the total 
visheshjain
Impactful Individual
Impactful Individual

In that case use ISINSCOPE()

 

Something on the lines of:

Measure = 
IF(

     ISINSCOPE('Column name used on the rows of the Matrix'),
     [total tickets],

     CALCULATE([total tickets],ALL(Query1[WT_MNS]))
)

This should keep the filters on only the total while filtering the values in the matix.

 

Hope this helps.

 

Thank you,

Vishesh Jain

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

Thank you,
Vishesh Jain

Proud to be a Super User!



Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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