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
Solved! Go to Solution.
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.
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.
Hi @Invesco ,
I think you are getting blank because of max & all selected function,
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
238 | |
53 | |
48 | |
45 | |
42 |
User | Count |
---|---|
282 | |
211 | |
82 | |
77 | |
73 |