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

Ignoring filter within DAX using multiple filters

Hi all, 

I'd like to show the current year values regardless of the selected year in the filter pane. Here's my code: 

 

FCosts_YTD =
CALCULATE(
          SUM(PERFORMANCE[VALUE_2])
          ;FILTER(ALL(PERFORMANCE);PERFORMANCE[YEAR]=[Actual_Year])
          ;FILTER(PERFORMANCE;PERFORMANCE[ENTRY_TYPE]="REAL")
          ;FILTER(PERFORMANCE;PERFORMANCE[TYPE]="FCOST")
         )
 
This one works fine: 
 
FCosts_YTD =
CALCULATE(
          SUM(PERFORMANCE[VALUE_2])
          ;FILTER(ALL(PERFORMANCE);PERFORMANCE[YEAR]=[Actual_Year])
          )
 
It seems like whenever I use multiple filters the ignore filters approach doesn't work anymore. Does anyone know how to handle that? 
1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may take a look at the article below.

https://www.sqlbi.com/articles/filter-arguments-in-calculate/

Community Support Team _ Sam Zha
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

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may take a look at the article below.

https://www.sqlbi.com/articles/filter-arguments-in-calculate/

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

For such a scenario, move year to a different table and join it back with your table.

 

FCosts_YTD =
CALCULATE(
          SUM(PERFORMANCE[VALUE_2])
          ;FILTER(ALL(YEAR);YEAR[YEAR]=[Actual_Year])
          ;FILTER(PERFORMANCE;PERFORMANCE[ENTRY_TYPE]="REAL")
          ;FILTER(PERFORMANCE;PERFORMANCE[TYPE]="FCOST")
         )
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

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.