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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Ignore specific filters applied in table total values

Team, I have a table with 6 categories as below

 

CategoryOrderMonth Price  MRP 
AJan                           879                  1,029
BJan                        5,645                  5,795
CJan                           564                      714
DJan                        8,975                  9,125
EJan                        5,643                  5,793
FJan                           321                      471
AFeb                           213                      363
BFeb                        5,464                  5,614
CFeb                           654                      804
DFeb                           854                  1,004
EFeb                              63                      213
FFeb                           564                      714
Total                      29,839                31,639

 

In the Filters pane, I have applied OrderMonth = Jan and Category <> F. But, in my output table I need the Total should Ignore the Category Filter which I had applied as Category <> F and should SUM the Price, MRP for all categories in Jan (including category F). But, category F should not be seen in the output table as mentioned below.

 

Note: Price, MRP are measures.

CategoryOrderMonth Price  MRP 
AJan                           879                  1,029
BJan                        5,645                  5,795
CJan                           564                      714
DJan                        8,975                  9,125
EJan                        5,643                  5,793
Total                      22,02722,927

 

Any help is much appreciated.

Thanks,

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

You can use the below Measure to filter your visual table.

Measure = 
INT( 
    NOT( 
        SELECTEDVALUE( 'Table'[Category] ) = "F" 
    ) 
)

 Please see the below for reference.

image.png

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

HI @Anonymous,

I'd like to suggest you add if statement to your measure formula to check the row content level. If current is 'total' level, you can write a formula to add filter records calculation result with enabled filter effect.

Clever Hierarchy Handling in DAX 

Regards,

Xiaoxin Sheng

Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

You can use the below Measure to filter your visual table.

Measure = 
INT( 
    NOT( 
        SELECTEDVALUE( 'Table'[Category] ) = "F" 
    ) 
)

 Please see the below for reference.

image.png

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

Anonymous
Not applicable

Thanks @Mariusz ! That helps 🙂

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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