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! Learn more

Reply
Invesco
Helper V
Helper V

Return from different measure when nothing is selected DAX

Hi Experts

 

The following measure works fine when a selected is made to the filters from dev_shc_shingrix_activity table and 

shc_shingrix_practice table - however when NO filters are selected i want the measure to return back [Shingrix_Test]...and its not doing it - it returns back [Shingrix_] 
 
Shingrix Activity =
    IF(ISFILTERED(dev_shc_shingrix_activity),[Shingrix_],IF(ISFILTERED(shc_shingrix_practice),[Shingrix],[Shingrix_Test]))+0
1 REPLY 1
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

 

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
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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