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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Invesco
Helper V
Helper V

DAX Measure Error - if Nothing is selected in Slicers

Hi Experts

 

Getting blank() error in my card visual if nothing is selected in either teh Region and or Area Slicer how can i amend the measure to return back total result

measure

Accounts Reached =
VAR _Overall =  DIVIDE([Shingrix],[Practices],0)
VAR _Step1 = CALCULATE(DISTINCTCOUNT('dev_shc_shingrix_activity'[P Name]),
    FILTER(ALLSELECTED('dev_shc_shingrix_activity'),'dev_shc_shingrix_activity'[Region]=MAX('dev_shc_shingrix_activity'[Region]) &&
        'dev_shc_shingrix_activity'[Area]=MAX('dev_shc_shingrix_activity'[Area]) &&
        'dev_shc_shingrix_activity'[product_name] ="Shingrix"))
Return
    IF(_Step1=BLANK(),_Overall,_Step1)
1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @Invesco ,

You can also try the following dax:

Accounts Reached =
VAR _Overall =  DIVIDE([Shingrix],[Practices],0)
VAR _Step1 = CALCULATE(DISTINCTCOUNT('dev_shc_shingrix_activity'[P Name]), FILTER(ALLSELECTED('dev_shc_shingrix_activity'),'dev_shc_shingrix_activity'[Region]=MAX('dev_shc_shingrix_activity'[Region]) &&
        'dev_shc_shingrix_activity'[Area]=MAX('dev_shc_shingrix_activity'[Area]) &&
        'dev_shc_shingrix_activity'[product_name] ="Shingrix"))
Return
IF(    HASONEVALUE('dev_shc_shingrix_activity'[Region])&&HASONEVALUE('dev_shc_shingrix_activity'[Area]),
_Step1, _Overall)

 

Best Regards,

Liu Yang

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-yangliu-msft
Community Support
Community Support

Hi  @Invesco ,

You can also try the following dax:

Accounts Reached =
VAR _Overall =  DIVIDE([Shingrix],[Practices],0)
VAR _Step1 = CALCULATE(DISTINCTCOUNT('dev_shc_shingrix_activity'[P Name]), FILTER(ALLSELECTED('dev_shc_shingrix_activity'),'dev_shc_shingrix_activity'[Region]=MAX('dev_shc_shingrix_activity'[Region]) &&
        'dev_shc_shingrix_activity'[Area]=MAX('dev_shc_shingrix_activity'[Area]) &&
        'dev_shc_shingrix_activity'[product_name] ="Shingrix"))
Return
IF(    HASONEVALUE('dev_shc_shingrix_activity'[Region])&&HASONEVALUE('dev_shc_shingrix_activity'[Area]),
_Step1, _Overall)

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

NikhilChenna
Continued Contributor
Continued Contributor

Hi @Invesco ,

I think you are getting blank because of max & all selected function, 

 

Accounts Reached =
CALCULATE(DISTINCTCOUNT('dev_shc_shingrix_activity'[P Name]),
    FILTER('dev_shc_shingrix_activity'[product_name] ="Shingrix"))
 
Just try this out.
 
Regards,
Nikhil Chenna
 
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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