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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Invesco
Helper V
Helper V

IF with Isfiltered DAX Measure not return expected result when no filter is selected

Hi Experts

 

The following measure works fine when a filtered is selected that comes from dev_shc_shingrix_activity and and also works fine when a filter is selected from shc_shingrix_practice. However when no filter is selected is dose not give the correct result~

 

Measure

Shingrix Activity = IF(ISFILTERED(dev_shc_shingrix_activity),[Shingrix_],IF(ISFILTERED(shc_shingrix_practice),[Shingrix],[Shingrix_]))+0
 
 
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Invesco , try like

 

IF(calculate(ISFILTERED(dev_shc_shingrix_activity), allselected()),[Shingrix_],
IF(calculate(ISFILTERED(shc_shingrix_practice), allselected()),[Shingrix],
[Shingrix_Test]))+0

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Invesco , try like

 

IF(calculate(ISFILTERED(dev_shc_shingrix_activity), allselected()),[Shingrix_],
IF(calculate(ISFILTERED(shc_shingrix_practice), allselected()),[Shingrix],
[Shingrix_Test]))+0

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thank you Amit

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Kudoed Authors