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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
arashaga
Helper I
Helper I

Problem with conditional filtering using DAX

I have two slicers and a bar chart. I would like to show the bar chart only and only when there is a selction on both slicers. So for that I created a DAX function as below: 

 

 

ADD_Filter Condition = if (HASONEFILTER(SQL_SEEKUT_TX_UNDRGRD_GRAD_WAGE_LOAN[CIP6Title])&& ISFILTERED(SQL_SEEKUT_TX_UNDRGRD_GRAD_WAGE_LOAN[inst_name]), "Yes", "No")

I added the ADD_Filter_condition to the barchart filter and put the condition that it would show the chart when it is equal to "Yes":

3.PNG

 

 

 

Now, the chart shows when I select the first and second slicer and turns off when I select the first not the second slicer but the problem is that it doesn't work when I select the second one not the first one. I added a card visual below the bar chart to show that what ADD_Filter_Condtion has when I select the second slicer and not the first one(the case that filter doesn't work) and it says the values is NO so naturally the bar should not show up but it does. I can't wrap my head around this and it seems like a bug. Does anyone have any idea about this? (Below is the screenshot of different cases)

 

The case that works:1.PNG

 It works also when both are selected: 2.PNG

 

 

 

This is the case that it doesn't work ( the second one is only selected):3.PNG

 

 

 

 

2 REPLIES 2
dedelman_clng
Community Champion
Community Champion

Try HASONEVALUE instead of HASONEFILTER at the beginning of your measure.

 

Hope this helps

David

Thanks @dedelman_clng but it didn't work.

Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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